我正在运行Debian 8和nginx(~1.6)的默认repo版本。我将repo更改为nginx,并下载了最新版本(1.10.0),现在我的munin统计数据不起作用,除了RAM使用情况。具体而言;
请 已处理请求/连接 Nginx状态
......所有人都不能工作并制作空白图表。 Nginx按预期工作,似乎没有任何其他变化。我不确定要检查的日志 - munin-graph.log,munin-html.log,munin-update.log和munin-node.log不包含任何错误或警告。
欢迎任何有关如何排除故障的建议!
答案 0 :(得分:0)
nginx_* plugins need access to URL http://localhost/nginx_status
. Check it by wget http://localhost/nginx_status
or munin-run -d nginx_status
(In the second case there is plugin name, not location from nginx config}.
Also check nginx config. It must contain something like
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
in the server section