Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitaliy-orlov/nginx-lua-monitor
NGINX monitoring with Lua
https://github.com/vitaliy-orlov/nginx-lua-monitor
lua monitoring nginx
Last synced: about 2 months ago
JSON representation
NGINX monitoring with Lua
- Host: GitHub
- URL: https://github.com/vitaliy-orlov/nginx-lua-monitor
- Owner: vitaliy-orlov
- License: mit
- Created: 2015-06-30T16:52:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T07:11:54.000Z (about 9 years ago)
- Last Synced: 2023-03-02T16:26:23.139Z (almost 2 years ago)
- Topics: lua, monitoring, nginx
- Language: Lua
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nginx-lua-monitor
NGINX monitoring with LuaThis module collect information for each virtual server that created in NGINX.
Information data:
- Number of all requests to domain
- Number of requests to backend server
- Number of ajax requests
- Number of bad requests like 400, 449, 408, 444
- Number of sent bytes to client or counting trafficExample of output:
```localhost;all;100
localhost;backend;100
localhost;banned;0
localhost;ajax;0
localhost;bytes;156
site.com;all;234
site.com;backend;100
site.com;banned;4
site.com;ajax;120
site.com;bytes;5431
```There is also support output in JSON format.