Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/magicbear/ngx_realtime_request_module
Deprecated: please use tengine ngx_http_reqstat_module.
https://github.com/magicbear/ngx_realtime_request_module
Last synced: 16 days ago
JSON representation
Deprecated: please use tengine ngx_http_reqstat_module.
- Host: GitHub
- URL: https://github.com/magicbear/ngx_realtime_request_module
- Owner: magicbear
- License: other
- Created: 2013-04-09T18:39:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-03T06:36:31.000Z (over 11 years ago)
- Last Synced: 2024-08-05T19:34:31.542Z (3 months ago)
- Language: C
- Homepage:
- Size: 114 KB
- Stars: 32
- Watchers: 11
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
About
=====
`ngx_realtime_request` is `nginx` module which adds ability to count tranffic
from vhost.Status
======
This module is production-ready and it's compatible with following nginx
releases:- 1.3.x (tested with 1.3.6 to 1.3.15).
Configuration directives
========================
realtime_zonesize
-------------------
* **syntax**: `realtime_zonesize size`
* **default**: `4m`
* **context**: `http`Sets slab size.
realtime_request
-----------------
* **syntax**: `realtime_request [on/off]`
* **default**: `none`
* **context**: `location`Sets area that show the statistics.
Sample configuration
====================
http {
realtime_zonesize 16m;server {
location ~ /rt_status {
realtime_request on;
}
}
}