Nginx 의 7 가지 상태

4643 단어 linuxnginx
오늘 우 리 는 셸 스 크 립 트 를 통 해 Nginx 를 상태 추적 합 니 다.작업 절차: 1) Nginx 의 추적 서 비 스 를 시작 합 니 다.2) 셸 스 크 립 트 를 작성 하여 가 져 오기;
1. Nginx 추적 서비스 시작
Nginx 의 기능 모듈 에는 Nginx 의 기본 접근 상태 정 보 를 기록 하 는 모듈 ngx_http_stub_status_module 이 있 지만 설정 해 야 시작 할 수 있 습 니 다.메모: yum 설치 방식 도 기본적으로 이 모듈 이 설치 되 어 있 습 니 다.
# 1.   Nginx
[root@shellLab ~]# yum install -y nginx
# 2.       
[root@shellLab nginx]# cd /etc/nginx
[root@shellLab nginx]# cat nginx.conf
worker_processes 1;
events {
    worker_connections 1024;
}
http {
    include mime.types;
    default_type application/octet-stream;
    sendfile on;
    keepalive_timeout 65;
    server {
        listen 80;
        server_name localhost;
        location / {
            root html;
            index index.html index.htm;
        }
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
            root html;
        }
        #       
        location /nginx_status {
            stub_status on; #         
            access_log off; #           
        }
    }
}
[root@shellLab nginx]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@shellLab nginx]# nginx 
[root@shellLab nginx]# netstat -lntup
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name   
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1405/nginx          
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1188/sshd           
tcp 0 0 :::22 :::* LISTEN 1188/sshd       
# 3. curl  ,     Nginx         
[root@shellLab nginx]# curl 10.0.0.88/nginx_status
Active connections: 1 
server accepts handled requests
 1 1 1 
Reading: 0 Writing: 1 Waiting: 0 

Bash
Copy
2. 스 크 립 트 작성 상태
[root@shellLab scripts]# cat nginx_status.sh
#!/bin/bash
################################################
# Author: alys114
# Blog: blog.alys114.com
# Time: 2018-11-19 09:34:54
# Name: nginx_status.sh
# Version: V1.0
# Description: This is Nginx status check function
################################################

NGINX_URL=$2
NGINX_PORT=$3

[ ! $NGINX_URL ] && {
echo $"USAGE:$0 {active|reading|writing|waiting|accepts|handled|requests} url [port]"
exit 1 
    }

[ ! $NGINX_PORT ] && {
 NGINX_PORT=80
}

NGINX_COMMAND=$1
nginx_active(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Active/ {print $NF}'
}
nginx_reading(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Reading/ {print $2}'
}
nginx_writing(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Writing/ {print $4}'
}
nginx_waiting(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk '/Waiting/ {print $6}'
}
nginx_accepts(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $1}'
}
nginx_handled(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $2}'
}
nginx_requests(){
 /usr/bin/curl -s "http://$NGINX_URL:"$NGINX_PORT"/nginx_status/" |awk 'NR==3 {print $3}'
}
case $NGINX_COMMAND in
 active)
  nginx_active;
  ;;
 reading)
  nginx_reading;
  ;;
 writing)
  nginx_writing;
  ;;
 waiting)
  nginx_waiting;
  ;;
 accepts)
  nginx_accepts;
  ;;
 handled)
  nginx_handled;
  ;;
 requests)
  nginx_requests;
  ;;
 *)
  echo $"USAGE:$0 {active|reading|writing|waiting|accepts|handled|requests} url [port]"
esac

# 2.        
[root@shellLab scripts]# curl 10.0.0.88/nginx_status
Active connections: 1 
server accepts handled requests
 7 7 7 
Reading: 0 Writing: 1 Waiting: 0 
[root@shellLab scripts]# sh nginx_status.sh handled 10.0.0.88
8
[root@shellLab scripts]# sh nginx_status.sh active 10.0.0.88
1
[root@shellLab scripts]# sh nginx_status.sh requests 10.0.0.88
10

Bash
Copy
Ngnix 상태 추적 지표 분석:
  • active connections  >> 백 엔 드 에서 시작 하 는 이벤트 연결 수;
  • server accepts handled requests  >> nginx 는 총 [accepts] 개의 연결 을 처리 하여 [handled] 회 악 수 를 성공 적 으로 만 들 었 습 니 다. 총 [requests] 개의 요청
  • 을 처리 하 였 습 니 다.
  • reading  >> nginx 에서 클 라 이언 트 의 Header 정보 수 읽 기;
  • writing  >> nginx 가 클 라 이언 트 에 게 반환 하 는 Header 정보 수;
  • waiting  >> keep - alive 를 켜 면 이 값 은 active – (reading + writing) 와 같 습 니 다. Nginx 는 다음 요청 명령 을 기다 리 고 있 는 상주 연결 을 처리 했다 고 합 니 다.
  • 좋은 웹페이지 즐겨찾기