1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

proc_mem_by_user:

- use of bash
- don't corrupt rrd files when "root" (or any unclean value) is requested
This commit is contained in:
Raphaël Droz 2015-11-09 21:32:46 -03:00
parent 9dcf5885e9
commit 5a320fce61

50
plugins/processes/proc_mem_by_user Normal file → Executable file
View file

@ -1,5 +1,6 @@
#!/bin/sh
#
# (c) 2015, Raphaël Droz <raphael.droz@gmail.com>
# (c) 2014, Gilles Fauvie <gfauvie@opendbteam.com>
# Based on the 'du_multidirs' plugin, written by Christian Kujau <lists@nerdbynature.de>
#
@ -10,25 +11,46 @@
# [proc_mem_by_user]
# env.users munin-node jprod
#
# see bug:
# http://munin-monitoring.org/ticket/921
# /usr/share/munin/plugins/plugin.sh (clean_fieldname())
. $MUNIN_LIBDIR/plugins/plugin.sh
. "$MUNIN_LIBDIR/plugins/plugin.sh"
users=${users:-munin-node}
if [ "$1" = "autoconf" ]; then
echo yes
if [ "$1" = autoconf ]; then
ok=1
[ -z "$users" ] && ok=0
for user in $users; do
ps u -U "$user" 1> /dev/null 2>&1 || ok=0
done
if [ $ok = 1 ]; then echo yes
else echo no; fi
exit 0
fi
users=${users:="munin-node"}
if [ "$1" = "config" ]; then
echo 'graph_title Memory usage by process by user'
echo 'graph_args --base 1024 -l 0'
echo 'graph_vlabel Bytes'
echo 'graph_category processes'
echo 'graph_info This graph shows the memory usage of several processes of one user'
if [ "$1" = config ]; then
cat <<EOF
graph_title Memory usage by process by user
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category processes
graph_info This graph shows the memory usage of several processes of one user
graph_order $(echo "$users"|sed 's/\broot\b/__root/g')
EOF
for user in $users; do
echo "$user.label $user"
munin_safe_name=$(clean_fieldname "$user")
cat<<EOF
$munin_safe_name.label $user
$munin_safe_name.info $user
$munin_safe_name.min 0
$munin_safe_name.draw LINESTACK2
$munin_safe_name.type GAUGE
EOF
done
# echo "$u".warning 0
@ -38,5 +60,7 @@ if [ "$1" = "config" ]; then
fi
for user in $users; do
echo "$user.value " `ps u -U $user | awk 'BEGIN { sum = 0 } NR > 1 { sum += $6 }; END { print sum * 1024 }'`
munin_safe_name=$(clean_fieldname "$user")
sum=$(ps u -U "$user" | awk 'BEGIN { sum = 0 } NR > 1 { sum += $6 }; END { print sum * 1024 }')
echo "$munin_safe_name.value ${sum:-U}"
done