zoukankan      html  css  js  c++  java
  • nginx状态监控

    通过查看Nginx的并发连接,我们可以更清楚的知道网站的负载情况。Nginx并发查看有两种方法,一种是通过web界面,一种是通过命令,web查看要比命令查看显示的结果精确一些。下面介绍这两种查看方法

    No1、通过浏览器查看
    通过web界面查看时Nginx需要开启status模块,也就是安装Nginx时加上        --with-http_stub_status_module   然后配置Nginx.conf,在server点里面加入如下内容

    location /nginx_status {
    stub_status on;
    allow 192.168.0.0/24;
    deny all;
    }



    配置完后重新启动Nginx后我们可以通过浏览器访问http://localhost/nginx_status 查看,如下图

     解析:
    Active connections    //当前 Nginx 正处理的活动连接数。
    server accepts handledrequests //总共处理了215 个连接 , 成功创建 215 次握手,总共处理了9319个请求。


    Reading //nginx 读取到客户端的 Header 信息数。
    Writing //nginx 返回给客户端的 Header 信息数。

    Waiting //开启 keep-alive 的情况下,这个值等于 active – (reading + writing),意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接

     

    curl -s "http://192.168.0.73:8080/nginx_status" |grep 'Active' | awk '{print $3 } '
  • 相关阅读:
    codeforces 1295 题解(完结)
    Leetcode 第 173 场周赛 题解(完结)
    P2564-[USACO12MAR]花盆Flowerpot
    Task 1-2
    LeetCode--169--多数元素(python)
    049字符异位词分组(python)
    矩阵路径(python)
    全排列
    滑动窗口最大值leetcode & nowcoder(python)
    取topK
  • 原文地址:https://www.cnblogs.com/mingerlcm/p/7753905.html
Copyright © 2011-2022 走看看