No cpu utilization graph under openSUSE 13.1
Am 23.01.2014 15:07, schrieb user-ce4a2c883f75@xymon.invalid: ...
So the solution is simple: Change the xymonclient-linux.sh script that
generates the client data. Near the end of the script is where 'top'
runs, so add a blank line to the output right after top:
if test -x "$TOP"
then
echo "[top]"
$TOP -b -n 1
# Some top's (OpenSUSE 13.1) do not output a final newline ...
echo "" <---- add this line
fi
Works. Thank you. Hermann-Josef Beckers