O módulo nginx StubStatus pode ajudá-lo.
Se você adicionar o seguinte bloco de servidor sob o http
-context, você receberá uma interface http que fornecerá algumas estatísticas simples.
server {
listen 127.0.0.1:8200;
location /server-status {
access_log off;
allow 127.0.0.1;
deny all;
stub_status on;
}
}
Uma solicitação para a interface fornecerá os seguintes dados:
$ GET http://127.0.0.1:8200/server-status
Active connections: 20
server accepts handled requests
61940 61940 1718912
Reading: 1 Writing: 2 Waiting: 17