SynopsisThis module provides the ability to get some status from nginx. This module is not compiled by default and must be specified using the --with-http_stub_status_module
argument to Example:
location /nginx_status {
# copied from http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/
stub_status on;
access_log off;
allow SOME.IP.ADD.RESS;
deny all;
}
Directivesstub_statussyntax: stub_status on default: None context: location Enables the status handler in this location. The stub status module reports status similar to mathopd's status page. It is plain text information like Active connections: 291 server accepts handled requests 16630948 16630948 31070465 Reading: 6 Writing: 179 Waiting: 106
|
