My collectd config looks like:
LoadPlugin nginx
...
<Plugin "nginx">
URL "http://localhost:8080/nginx_status?auto"
</Plugin>
Nginx conf looks like:
server {
listen 8080;
index index.html index.htm;
server_name localhost;
root /var/www/default/;
location / {
try_files $uri $uri/ /index.html;
}
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
When i execute
$ curl http://localhost:8080/nginx_status?auto
it outputs:
Active connections: 1
server accepts handled requests
56 56 322
Reading: 0 Writing: 1 Waiting: 0
But when open graphite there is no nginx graph avaliable. Collectd and Nginx was restarted many times. Any suggestions?