]> arthur.barton.de Git - netdata.git/blob - charts.d/mem_apps.chart.sh
minor fixes
[netdata.git] / charts.d / mem_apps.chart.sh
1 #!/bin/sh
2
3 mem_apps_apps="netdata asterisk squid apache2 mysqld dovecot cupsd sshd named clamd smbd"
4
5 # these are required for computing memory in bytes and cpu in seconds
6 #mem_apps_pagesize="`getconf PAGESIZE`"
7 #mem_apps_clockticks="`getconf CLK_TCK`"
8
9 mem_apps_check() {
10         # this should return:
11         #  - 0 to enable the chart
12         #  - 1 to disable the chart
13
14         if [ -z "$mem_apps_apps" ]
15         then
16                 echo >&2 "mem_apps: Please set mem_apps_apps='command1 command2 ...' in $confd/mem_apps_apps.conf"
17                 return 1
18         fi
19         return 0
20 }
21
22 mem_apps_bc_finalze=
23
24 mem_apps_create() {
25
26         echo "CHART apps.mem '' 'Apps Memory' MB apps apps stacked 20000 $update_every"
27
28         local x=
29         for x in $mem_apps_apps
30         do
31                 echo "DIMENSION $x $x absolute 1 1024"
32
33                 # this string is needed later in the update() function
34                 # to finalize the instructions for the bc command
35                 mem_apps_bc_finalze="$mem_apps_bc_finalze \"SET $x = \"; $x;"
36         done
37         return 0
38 }
39
40 mem_apps_update() {
41         # do all the work to collect / calculate the values
42         # for each dimension
43         # remember: KEEP IT SIMPLE AND SHORT
44
45         echo "BEGIN apps.mem"
46         ps -o comm,rss -C "$mem_apps_apps" |\
47                 grep -v "^COMMAND" |\
48                 (       sed -e "s/ \+/ /g" -e "s/ /+=/g";
49                         echo "$mem_apps_bc_finalze"
50                 ) | bc
51         echo "END"
52
53         return 0
54 }