URL "http://localhost:8080/ng...">

Collectd and Nginx plugin not working

My collectd config looks like this:

LoadPlugin nginx
...
<Plugin "nginx">
    URL "http://localhost:8080/nginx_status?auto"
</Plugin>

Nginx conf looks like this:

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 do

$ curl http://localhost:8080/nginx_status?auto

output:

Active connections: 1 
server accepts handled requests
 56 56 322 
Reading: 0 Writing: 1 Waiting: 0 

But with open graphite, there is no nginx graph. Collectd and Nginx have been rebooted many times. Any suggestions?

+4
source share
1 answer

Finally allowed. After enabling the logfile plugin:

LoadPlugin logfile

<Plugin logfile>
    LogLevel info
    File "/var/log/collectd.log"
    Timestamp true
</Plugin>

I found that the nginx plugin is not installed:

[2014-10-14 06:30:59] plugin_load: Could not find plugin "nginx" in /usr/lib64/collectd
[2014-10-14 06:30:59] Found a configuration for the `nginx' plugin, but the plugin isn't loaded or didn't register a configuration callback.

Just do (AMI):

$ sudo yum install collectd-nginx

And everything works fine

+13
source

All Articles