博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx实时记录请求状态信息( ngx_realtime_request_module)
阅读量:5924 次
发布时间:2019-06-19

本文共 1514 字,大约阅读时间需要 5 分钟。

  hot3.png

关于 ngx_realtime_request是nginx用来统计虚拟主机流量的模块, 首先和大家说下这个模块是基于域名的,将会记录这个域名的请求量、发送字节、返回http状态码的数量,特性如下:
  • 基于域名记录
  • 记录请求数据量
  • 记录发送、响应流量
  • 记录返回各种http状态码统计数据
1.  安装
# cd /usr/local/src/# wget "http://nginx.org/download/nginx-1.4.2.tar.gz"# tar -xzvf nginx-1.4.2.tar.gz# wget https://github.com/magicbear/ngx_realtime_request_module/archive/master.zip -O ngx_realtime_request.zip# unzip ngx_realtime_request.zip# cd nginx-1.4.2/# ./configure --prefix=/usr/local/nginx-1.4.2 --add-module=../ngx_realtime_request_module-master# make# make install
2.  指令(directives) realtime_zonesize 语法: realtime_zonesize size 默认值: 4m 配置块: http 设置slab大小 realtime_request 语法: realtime_request [on/off] 默认值: none 配置块: location 开启统计
3.  配置实例
http {    realtime_zonesize  16m;    server {        server_name www.ttlsa.com        location ~ /ttlsa-rt-status {            realtime_request on;        }    }}
4. 测试 访问http://www.ttlsa.com几次,制造几个404和200等等 查看状态http://www.ttlsa.com/ttlsa-rt-status如下图 [caption id="attachment_4160" align="alignnone" width="534"] ngx_realtime_request[/caption] 上图解释: uptime:18 ->nginx运行了18秒 version:0.5 -> 当前插件版本 host:当前统计的域名,如果这台服务器有多个域名,会显示多行 request:请求量8个 recv:接收5294字节 send:发送2043字节 20x:响应了7次20x的状态码 30x:返回了0次30x 40x:返回了1次40xhttp状态码(我测试的404) 50x:返回了0次50x
5. 兼容性 如下版本已做测试 1.3.x (tested with 1.3.6 to 1.3.15). 1.4.2 运维时间用这个版本做了测试
6. 参考文章 项目地址:https://github.com/magicbear/ngx_realtime_request_module 参考文档:http://www.ttlsa.com/nginx/nginx-modules-ngx_realtime_request_module/ 网站:
运维生存时间 

转载于:https://my.oschina.net/766/blog/210834

你可能感兴趣的文章
2-2
查看>>
Stopwatch类学习
查看>>
外部中断0(含知识点)
查看>>
解决centos ping不通外网
查看>>
Shell配置_配置IP
查看>>
自定义Cell的流程
查看>>
Verify the Developer App certificate for your account is trusted on your device.
查看>>
【清北学堂】 死亡(death)
查看>>
java配置JDK
查看>>
《PowerShell 3.0 Advanced Admin handbook》已于今日上市
查看>>
[改善Java代码]性能考虑,数组是首选
查看>>
sql练习(针对Mysql)
查看>>
jQuery 事件和动画
查看>>
SQL Sever 性能调优
查看>>
痞子衡嵌入式:ARM Cortex-M内核那些事(2)- 第一款微控制器
查看>>
kmp算法讲解
查看>>
最长严格上升子序列
查看>>
asda
查看>>
ios之UISplitViewController
查看>>
如何让程序跑起来――第三章
查看>>