nginx - stub_status 연결 수 보기

2043 단어 nginx
[기본 소개]
nginx 의 stub 를 소개 합 니 다.status 모듈, 현재 웹 의 연결 수, 요청 수 등 을 볼 수 있 습 니 다.
【 모듈 보기 】
nginx 의 stubstatus 모듈 은 접근 상태의 정 보 를 지원 합 니 다.이 모듈 이 설치 되 어 있 는 지 확인 해 야 합 니 다.

nginx -V | grep ngx_http_stub_status_module

[기본 설정]

location /nginx_status {
     stub_status on;
     access_log off;
     allow xxx
     deny all;
}

[내용 설명]
Active connections: 291
server accepts handled requests
16630948 16630948 31070465
Reading: 6 Writing: 179 Waiting: 106
The following status information is provided:
활성 연결 (현재 클 라 이언 트 연결 수)
    The current number of active client connections including Waiting connections.
accepts (총 수신 고객 연결 수)
    The total number of accepted client connections.
handled (총 처 리 된 연결 수)
    The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit).
requests (총 요청 수)
    The total number of client requests.
Reading (현재 읽 기 요청 헤더 의 연결 수)
    The current number of connections where nginx is reading the request header.
Writing (현재 클 라 이언 트 에 피드백 하 는 연결 수)
    The current number of connections where nginx is writing the response back to the client.
대기 (현재 연결 대기 요청 수)
    The current number of idle client connections waiting for a request.
[다른 방식]
또 다른 명령 을 통 해 연결 수 를 확인 하 는 방식 은 예상 이 정확 하지 않 을 수 밖 에 없다.

[root@sparkVM script]# netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 
TIME_WAIT 1
ESTABLISHED 890

[root@sparkVM script]# ps -ef | grep nginx | wc -l 
14

[참조 참조 참조 참조]
http://nginx.org/en/docs/http/ngx_http_stub_status_module.html

좋은 웹페이지 즐겨찾기