2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

[cpubyuser] simplify AREASTACK usage

This commit is contained in:
Lars Kruse 2016-10-22 01:54:24 +02:00
parent 78f4e42d21
commit a465880501

View File

@ -58,18 +58,12 @@ if [ "$1" = "config" ]; then
echo "graph_period second"
_USERS="$(for user in $USERS; do clean_fieldname "$user" | tr '\n' ' '; done)"
echo "graph_order $_USERS others"
FIRSTUSER=1;
for USER in $USERS "others"; do
_USER="$(clean_fieldname "$USER")"
echo "${_USER}.label $USER"
echo "${_USER}.info CPU used by user $USER"
echo "${_USER}.type GAUGE"
if [ $FIRSTUSER -eq 1 ]; then
echo "${_USER}.draw AREA"
FIRSTUSER=0
else
echo "${_USER}.draw STACK"
fi
echo "${_USER}.draw AREASTACK"
done
exit
fi