1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 02:18:08 +00:00

Initial version

This commit is contained in:
Michael Rutledge 2009-05-16 08:21:29 +02:00 committed by Steve Schnepp
parent 0cbd0a712a
commit 8b76e0da67

45
plugins/other/multipsu Executable file
View file

@ -0,0 +1,45 @@
#!/bin/bash
#
# Script to monitor number of processes by user. Programs are configured
# in /etc/munin/plugin-conf.d/munin-node
#
# Parameters:
#
# config (required)
# autoconf (optional - used by lrrd-config)
#
# Configuration example
#
# [multipsu]
# env.multipsunames root exim ftp
#
#
# Magic markers (optional):
#%# family=manual
#%# capabilities=autoconf
if [ "$1" = "autoconf" ]; then
if [ -z "$multipsunames" ]; then
echo "Configuration required $multipsunames"
else
echo yes
fi
exit 0
fi
if [ "$1" = "config" ]; then
echo graph_title Number of selected processes
echo 'graph_category processes'
echo 'graph_args --base 1000 --vertical-label processes -l 0'
for name in $multipsunames; do
echo "$name.label $name"
echo "$name.draw LINE2"
done
exit 0
fi
for name in $multipsunames; do
printf "$name.value "
(pgrep -u "$name"; pgrep -U "$name") | sort -u | wc -l
done