我有一个新的Ubuntu服务器(Ubuntu 16.04.1 LTS,没有GUI的服务器版本,在远程服务器场中作为虚拟服务器运行),我安装了munin(munin和munin-node)。我没有更改标准安装中的任何内容,所以目前我使用的是标准安装中的30个插件。其中28个从一开始就很好。
插件“页面的HTTP加载时间”显示空图,但我发现包time
丢失了。我用
apt install time
并重新启动munin-node。所以现在这个插件已修复。
但是“进程优先级”(插件»proc_pri«)仍然存在问题。这个插件的图表(按天,按周,......)都是空的,我现在知道我可以在哪里开始搜索这个问题的原因。
请你能给我一些提示,我可以做些什么来解决这个问题?或者我可以做些什么来隔离问题。
答案 0 :(得分:1)
Check the output of ps -eo stat
command. Munin plugin proc_pri
is the simple shell script that process output of ps
and may fail after output format changing.
UPD: It simply count lines with symbols ">", "N" and "L" in the ps -eo stat
command output. Therefore if this command dont show full list of processes or use non-BSD output format, plugin will not count processes correctly.