Adicione isso a você localhost
config (padrão):
server {
server_name localhost;
[---snip---]
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
[---snip---]
}
Em seguida, leia (somente do host local) com:
$ wget -O - -q http://localhost/nginx_status
dá (por exemplo):
Active connections: 2
server accepts handled requests
31432 31432 631255
Reading: 0 Writing: 2 Waiting: 0