stub_status監控Nginx使用狀況!

stub_status監控Nginx使用狀況!php

查看nginx安裝的模塊!css

# /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.8.1
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-18) (GCC) 
built with OpenSSL 1.0.1e-fips 11 Feb 2013
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module

有安裝這個模塊哦! 配置,html

server{
        listen 80;
        index index.html index.htm index.php;
		server_name xxx.com;
        root  /home/wwwroot/default/sheep/Public;
	
        location /nginx_status {
                stub_status on;
        		access_log off;
                allow all;
        }

        include enable-php-pathinfo.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/sheep/access.log  main;
}

查看結果,在瀏覽器中查看!nginx

http://www.xxx.com/nginx_status
Active connections: 132 
server accepts handled requests
 1576 1576 2334 
Reading: 0 Writing: 3 Waiting: 129

第一行     當前的活躍鏈接數:132 #等於 Reading + Writing + Waiting 第二行     服務器已接受的鏈接數:1576(accepted connection #),已接收來自客戶端的鏈接數,也是被Worker進程接收的鏈接數。     服務器已處理的鏈接數:1576(handled connection #),已被處理的鏈接總數,其值通常與accepts相等,除非受到了某些資源的限制,如:設置了worker_connections的數量限制。     服務器已處理的請求:2334(能夠算出,平均每一個鏈接有 1.48 個請求)(handled connection #) 第三行     Reading – Nginx 正在讀取請求頭的鏈接數爲 0;     Writing – Nginx 正在讀取請求體、處理請求併發送響應給客戶端的鏈接數爲 3;     Waiting – 當前活動的長鏈接數:129。 #只是keep-alive,沒有活動的鏈接。瀏覽器

相關文章
相關標籤/搜索