blob: 6b2513dcf04f9c0a8f1a9961d891196248305bf3 (
plain)
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
|
# no need for shebang - this file is loaded from charts.d.plugin
# THIS PLUGIN IS OBSOLETE
# USE apps.plugin INSTEAD
# a space separated list of command to monitor
cpu_apps_apps=
# these are required for computing memory in bytes and cpu in seconds
#cpu_apps_pagesize="`getconf PAGESIZE`"
cpu_apps_clockticks="$(getconf CLK_TCK)"
cpu_apps_update_every=60
cpu_apps_check() {
# this should return:
# - 0 to enable the chart
# - 1 to disable the chart
if [ -z "$cpu_apps_apps" ]
then
echo >&2 "$PROGRAM_NAME: cpu_apps: Please set cpu_apps_apps='command1 command2 ...' in $confd/cpu_apps_apps.conf"
return 1
fi
return 0
}
cpu_apps_bc_finalze=
cpu_apps_create() {
echo "CHART chartsd_apps.cpu '' 'Apps CPU' 'milliseconds / $cpu_apps_update_every sec' apps apps stacked 20001 $cpu_apps_update_every"
local x=
for x in $cpu_apps_apps
do
echo "DIMENSION $x $x incremental 1000 $cpu_apps_clockticks"
# this string is needed later in the update() function
# to finalize the instructions for the bc command
cpu_apps_bc_finalze="$cpu_apps_bc_finalze \"SET $x = \"; $x;"
done
return 0
}
cpu_apps_update() {
# do all the work to collect / calculate the values
# for each dimension
# remember: KEEP IT SIMPLE AND SHORT
echo "BEGIN chartsd_apps.cpu"
ps -o pid,comm -C "$cpu_apps_apps" |\
grep -v "COMMAND" |\
(
while read pid name
do
echo "$name+=`cat /proc/$pid/stat | cut -d ' ' -f 14-15`"
done
) |\
( sed -e "s/ \+/ /g" -e "s/ /+/g";
echo "$cpu_apps_bc_finalze"
) | bc
echo "END"
return 0
}
|