-
Notifications
You must be signed in to change notification settings - Fork 4
/
multimemory
executable file
·88 lines (59 loc) · 1.76 KB
/
multimemory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
!/bin/sh
# -*- sh -*-
: <<=cut
=head1 NAME
multimemory - Munin plugin to monitor memory usage of processes. Which processes
are configured in client-conf.d
=head1 APPLICABLE SYSTEMS
Any system with a compatible ps command.
=head1 CONFIGURATION
There is no default configuration. This is an example:
[multimemory]
env.names apache2 mysqld php-cgi
The names are used to grep with directly, after cleaning. So, this plugin
only supports very basic pattern matching. To fix: see multips
=head1 INTERPRETATION
This plugin adds up the RSS of all processes matching the
regex given as the process name, as reported by ps.
=head1 MAGIC MARKERS
#%# family=manual
#%# capabilities=autoconf
=head1 VERSION
0.1 first release, based on:
multimemory.in 1590 2008-04-17 18:21:31Z matthias
As distributed in Debian.
=head1 BUGS
None known
=head1 AUTHOR
Originally: matthias?
Modified by: [email protected]
=head1 LICENSE
GPLv2
=cut
. $MUNIN_LIBDIR/plugins/plugin.sh
if [ "$1" = "autoconf" ]; then
echo yes
exit 0
fi
if [ -z "$names" ]; then
echo "Configuration required"
exit 1
fi
if [ "$1" = "config" ]; then
echo graph_title Total memory usage
echo 'graph_category processes'
echo 'graph_args --base 1024 --vertical-label memory -l 0'
for name in $names; do
fieldname=$(clean_fieldname $name)
eval REGEX='"${regex_'$name'-\<'$name'\>}"'
echo "$fieldname.label $name"
echo "$fieldname.draw LINE2"
echo "$fieldname.info Processes matching this regular expression: /$REGEX/"
done
exit 0
fi
for name in $names; do
fieldname=$(clean_fieldname $name)
printf "$fieldname.value "
ps auxww | grep $name | grep -v grep | sed -re 's/[ ]{1,}/ /g' | /usr/bin/cut -d ' ' -f 6 | /usr/bin/awk '{ total = total + $1 } END { print total }'
done