1

I am using http://wiki.nginx.org/HttpProxyModule for proxying.

Are there any tools that can give me statistics/connection data per server entry?

Michael Neale
  • 3,704
  • 5
  • 28
  • 26

2 Answers2

2

This is an old thread, but maybe somebody is still interested in the question and answer. I've created a small patch which gather information about all web domains, which are served by nginx (including proxied ones). The disadvantage: you will have to compile nginx from sources, though it is not that hard, since nginx is light-weight and has not that many of dependencies plus apt-get build-dep nginx (on Ubuntu/Debian) always helps.

Patch is here: https://github.com/sliusar/nginx-online-stats

Vitalii
  • 21
  • 1
2

You can use the statistics module:

http://wiki.nginx.org/HttpStubStatusModule

(just adding as answer instead of comment)

Grumpy
  • 2,979
  • 18
  • 23