### StubStatus模块
这个模块能够获取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]
### stub_status
**语法:***stub_status* on
**默认值:***None*
**作用域:***location*
创建一个 location 区域启用 stub_status
"stub status" 模块返回的状态信息跟 [mathopd's](http://www.mathopd.org/ "http://www.mathopd.org/") 的状态信息很相似. 返回的状态信息如下:
~~~
Active connections: 291
server accepts handled requests
: 16630948 16630948 31070465
Reading: 6 Writing: 179 Waiting: 106
~~~
`active connections` -- 对后端发起的活动连接数
`server accepts handled requests` -- nginx 总共处理了 16630948 个连接, 成功创建 16630948 次握手 (证明中间没有失败的), 总共处理了 31070465 个请求 (平均每次握手处理了 1.8个数据请求)
`reading` -- nginx 读取到客户端的Header信息数
`writing` -- nginx 返回给客户端的Header信息数
`waiting` -- 开启 keep-alive 的情况下,这个值等于 `active - (reading + writing)`,意思就是Nginx说已经处理完正在等候下一次请求指令的驻留连接
### Examples
[http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/](http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/ "http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/")
[http://dev.2xlp.com/svn/nginx_config/trunk/conf/_rrd/__README__.txt](http://dev.2xlp.com/svn/nginx_config/trunk/conf/_rrd/__README__.txt "http://dev.2xlp.com/svn/nginx_config/trunk/conf/_rrd/__README__.txt")
- 主要文档
- Nginx功能概述
- 为什么选择Nginx
- Nginx安装
- 运行和控制Nginx
- 配置符号参考
- 优化 Nginx
- 常见问题(FAQ)
- 调试 nginx
- 核心模块
- Nginx主模块
- Nginx事件模块
- 基本模块
- http核心模块
- HttpIndex模块
- HttpAccess模块
- HttpAuthBasic模块
- HttpAutoindex模块
- Browser模块
- Charset模块
- HttpEmptyGif模块
- HttpFcgi模块
- Geo模块
- HttpGzip模块
- HttpHeaders模块
- HttpIndex模块
- HttpReferer模块
- HttpLimit zone
- HttpLimitReqest模块
- HttpLog模块
- map
- Memcached
- HttpProxy模块
- HttpRewrite模块
- HttpSSI模块
- HttpUserId
- 其他模块
- Addition模块
- EmbeddedPerl
- flv
- HttpGzipStatic
- RandomIndex
- HttpGeoIP
- HttpRealIp
- HttpSSL
- StubStatus模块
- HttpSubstitution
- HttpDav模块
- GooglePerftools
- HttpXSLT
- HttpSecureLink
- HttpImageFilter
- mail模块
- MailCore
- MailAuth
- MailProxy
- MailSSL
- 安装
- nginx在windows上的安装
- nginx在freebsd上的安装
- nginx在ubuntu上的安装
- nginx在fedora上的安装
- nginx php-fpm安装配置
- 配置示例和方法
- 完整例子
- 完整例子2
- 虚拟主机
- 负载均衡
- nginx防盗链
- HWLoadbalancerCheckErrors