我是靠谱客的博主 留胡子秀发,最近开发中收集的这篇文章主要介绍Nginx监控连接信息和请求信息ngx_http_stub_status监控连接信息ngxtop安装监控请求信息,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ngx_http_stub_status监控连接信息

检查是否有了模块

nginx –V

…

--with-http_stub_status_module

…

 

配置

[root@storm-nimbus-a conf.d]#vi /etc/nginx/conf.d/ default.conf

##添加该信息

location /nginx_status{

stub_status  on;

access_log    off;

}

重启nginx

访问

http://192.168.25.20/nginx_status

 

Active connections: 当前nginx正在处理的活动连接数(包含等待的连接数).

Server accepts handled requests request_time: nginx总共处理了13057 个连接,成功创建13057 握手(证明中间没有失败的),总共处理了11634 个请求,总共请求时间2230854。

Reading: nginx读取到客户端的Header信息数.

Writing: nginx返回给客户端的Header信息数.

Waiting: 当前空闲的连接数

ngxtop安装监控请求信息

安装python-pip

yum   install epel-release

yum   install python-pip

安装ngxtop

pip install ngxtop

官方文档

https://github.com/lebinh/ngxtop

包含具体使用详解

 

指定配置文件

ngxtop -c /etc/nginx/nginx.conf

 

查询状态是200

ngxtop -c /etc/nginx/nginx.conf -i 'status==200'

查询状态是404:

ngxtop -c /etc/nginx/nginx.conf -i 'status==404'

 

 

 

查询访问最多ip:

ngxtop -c /etc/nginx/nginx.conf -g remote_addr

最后

以上就是留胡子秀发为你收集整理的Nginx监控连接信息和请求信息ngx_http_stub_status监控连接信息ngxtop安装监控请求信息的全部内容,希望文章能够帮你解决Nginx监控连接信息和请求信息ngx_http_stub_status监控连接信息ngxtop安装监控请求信息所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部