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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.