mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
17f784270a
* remove trailing whitespace * remove empty lines at the end of files
46 lines
943 B
Bash
Executable File
46 lines
943 B
Bash
Executable File
#!/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
|