安装
在编译nginx之前,编译选项里加上:
--with-http_stub_status_module
因为nginx默认是不安装改模块的。
配置
在nginx.conf里,server下面,加入配置:
location /nginx_status {
# copied from http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/
stub_status on;
access_log off;
allow all; # allow SOME.IP.ADD.RESS;比如 allow 202.106.1.60;
# deny all;
}
重载配置
nginx -s reload
访问nginx的性能统计页面
http://xxxx.com/nginx_status/
结果如下:
解释
Active connections: 1
server accepts handled requests
49894 49894 340975
Reading: 0 Writing: 1 Waiting: 0
下面这段解释是抄过来的:⊙﹏⊙b
(原文http://momodog.iteye.com/blog/1283371)
Active connections:Nginx 正处理的活动连接数 。
server accepts handled requests:Nginx启动到现在共处理了 49894 个连接 , 成功创建 49894 次握手。 一般跟第一个一样,差值为请求丢失数, 总共处理了340975次请求
。
reading :nginx 读取到客户端的 Header 信息数。
writing : nginx 返回给客户端的 Header 信息数。
waiting :开启 keep-alive 的情况下,这个值等于 active - (reading + writing),意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接。
这个状态信息,从nginx启动算起,包括重载配置文件,也会清零
原文请见:http://blog.csdn.net/chenggong2dm/article/details/10002805