How can I check the current load on my nginx server?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

nginx has a status module (NginxHttpStubStatusModule) that you can access via:

http://yoursite/nginx_status

but you need to recompile nginx to get this support - it isn't enabled by default.

See this blog post for more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.