Stub Status模块(Stub Status)
·摘要
这个模块可以取得一些nginx的运行状态。
要使用这个模块必须在编译时指定下列编译参数:
--with-http_stub_status_module
示例配置:
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;
}
·指令
stub_status
语法:stub_status on
默认值:none
使用字段:location
在这个location中启用状态监测。
这个模块可以生成一个类似mathopd状态页面的纯文本信息:
Active connections: 291
server accepts handled requests
16630948 16630948 31070465
Reading: 6 Writing: 179 Waiting: 106
active connections -- 所有打开的连接,包括连接到后端服务器的。
server accepts handled requests -- nginx已经接受并处理16630948个连接,31070465个请求(每个连接1.8个请求)。
reading -- 读取的请求头。
writing -- 读取的请求主体,处理的请求或者写入的应答。
waiting -- keepalive连接数,等于active - (reading + writing)。
·参考文档