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

91 lines
2.3 KiB
Plaintext
Raw Normal View History

2007-11-06 11:02:48 +01:00
#!/bin/bash
#
# Plugin to monitor CPU usage, for a selected set of users
#
# Usage: Place in /etc/munin/node.d/ (or link it there using ln -s)
# Add this to your /etc/munin/plugin-conf.d/munin-node:
# [cpubyuser]
# env.USERS root yann
#
# If env.USERS is set to ALL, count all logged in users.
#
2007-11-06 11:02:48 +01:00
# root and yann being a list of the users to monitor.
# You need to also make sure that awk is installed
#
# 2008-12-08 v 1.3.1 Hanisch Elián:
# - support for dots in user names.
# - fix labels
#
# 2008-12-01 v 1.3 Hanisch Elián:
# - fixes, refactoring and code cleanup
# - Users that use cpu but aren't in the USERS env var
# are plotted as "others", set others.graph to 'no' if
# you don't want this.
#
# 2008-03-20 v 1.2 fireball: fixed minor screwup, works now ^^
#
# 2008-01-09 v 1.1 fireball: fixed "-" in usernames, those get replaced by "_" now.
# set usernames in config accordingly (that is with _)
#
#
# Parameters understood:
#
# config (required)
# autoconf (optional - used by munin-config)
#
#%# family=auto
#%# capabilities=autoconf
. "$MUNIN_LIBDIR/plugins/plugin.sh"
2007-11-06 11:02:48 +01:00
if [ "$1" = "autoconf" ]; then
if [ -n "$USERS" ]; then
echo "yes"
else
echo "\$USERS not defined."
fi
exit
fi
if [ "$1" = "config" ]; then
echo "graph_args --base 1000 -r --lower-limit 0"
echo "graph_title CPU usage, by user"
echo "graph_category system"
echo "graph_info This graph shows CPU usage, for monitored users."
echo "graph_vlabel %"
echo "graph_scale no"
echo "graph_period second"
_USERS="$(for user in $USERS; do clean_fieldname "$user" | tr '\n' ' '; done)"
2007-11-06 11:02:48 +01:00
echo "graph_order $_USERS others"
for USER in $USERS "others"; do
_USER="$(clean_fieldname "$USER")"
2007-11-06 11:02:48 +01:00
echo "${_USER}.label $USER"
echo "${_USER}.info CPU used by user $USER"
echo "${_USER}.type GAUGE"
2016-10-22 01:54:24 +02:00
echo "${_USER}.draw AREASTACK"
2007-11-06 11:02:48 +01:00
done
exit
fi
if [ "$USERS" = "ALL" ]; then
USERS=$( w | awk '{ print $1 }' )
fi
top -b -n 1 | tail -n +8 | \
2007-11-06 11:02:48 +01:00
awk -v USERS="$USERS" '
{ if ($2 != "USER") CPU_USER[$2]+=$9 }
2007-11-06 11:02:48 +01:00
END {
others_sum = 0
for (user in CPU_USER) {
m = match(USERS,user)
if (m != 0) {
_user=user
gsub(/[-.]/,"_", _user);
print _user".value", CPU_USER[user]
} else
others_sum += CPU_USER[user]
}
print "others.value", others_sum;
}'