zoukankan      html  css  js  c++  java
  • 启用nginx status状态详解

    nginxphp-fpm一样内建了一个状态页,对于想了解nginx的状态以及监控nginx非常有帮助。为了后续的zabbix监控,我们需要先了解nginx状态页是怎么回事。

    1. 启用nginx status配置

    在默认主机里面加上location或者你希望能访问到的主机里面。

    2. 重启nginx

    请依照你的环境重启你的nginx

    3. 打开status页面

    # curl http://127.0.0.1/ngx_status
    Active connections: 11921
    server accepts handled requests
     11989 11989 11991
    Reading: 0 Writing: 7 Waiting: 42 

    4. nginx status详解

    active connections – 活跃的连接数量
    server accepts handled requests — 总共处理了11989个连接 , 成功创建11989次握手, 总共处理了11991个请求
    reading — 读取客户端的连接数.
    writing — 响应数据到客户端的数量
    waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.

  • 相关阅读:
    多线程
    ERP概念介绍
    Servlet生命周期
    springmvc工作流程
    spring事务管理的接口
    解决主从备份Slave_SQL_Running:No
    实现Mysql主从备份
    springboot集成mybatis进行开发
    SpringBoot 入门第一章
    Hibernate 关联关系映射
  • 原文地址:https://www.cnblogs.com/wuling129/p/4987960.html
Copyright © 2011-2022 走看看