]> arthur.barton.de Git - netdata.git/blob - charts.d/tomcat.chart.sh
As suggested, tweaked tomcat_url for better handling, added array for single xml...
[netdata.git] / charts.d / tomcat.chart.sh
1 #!/bin/bash
2
3 # Description: Tomcat netdata charts.d plugin
4 # Author: Jorge Romero
5
6 # the URL to download tomcat status info
7 tomcat_url="http://localhost:8080/manager/status?XML=true"
8
9 # _update_every is a special variable - it holds the number of seconds
10 # between the calls of the _update() function
11 tomcat_update_every=
12
13 tomcat_priority=60000
14
15 # convert tomcat floating point values
16 # to integer using this multiplier
17 # this only affects precision - the values
18 # will be in the proper units
19 tomcat_decimal_detail=1000000
20
21 # used by volume chart to convert bytes to KB
22 tomcat_decimal_KB_detail=1000
23
24 tomcat_check() {
25
26         require_cmd xmlstarlet || return 1
27
28         tomcat_get
29         if [ $? -ne 0 ]
30                 then
31                 echo >&2 "tomcat: cannot find stub_status on URL '${tomcat_url}'. Please set tomcat_url='http://<user>:<password>@localhost:8080/manager/status?XML=true'"
32                 return 1
33         fi
34
35         # this should return:
36         #  - 0 to enable the chart
37         #  - 1 to disable the chart
38
39         return 0
40 }
41
42 tomcat_get() {
43         # Collect tomcat values
44         mapfile -t lines < <(curl -s "$tomcat_url" | xmlstarlet sel -t -m "/status/jvm/memory" -v @free -n -m "/status/connector[@name='\"http-bio-8080\"']/threadInfo" -v @currentThreadCount -n -v @currentThreadsBusy -n -m "/status/connector[@name='\"http-bio-8080\"']/requestInfo" -v @requestCount -n -v @bytesSent -n -)
45
46         tomcat_jvm_freememory="${lines[0]}"
47         tomcat_threads="${lines[1]}"
48         tomcat_threads_busy="${lines[2]}"
49         tomcat_accesses="${lines[3]}"
50         tomcat_volume="${lines[4]}"
51
52         return 0
53 }
54
55 # _create is called once, to create the charts
56 tomcat_create() {
57         cat <<EOF
58 CHART tomcat.accesses '' "tomcat requests" "requests/s" statistics tomcat.accesses area $[tomcat_priority + 8] $tomcat_update_every
59 DIMENSION accesses '' incremental
60 CHART tomcat.volume '' "tomcat volume" "KB/s" volume tomcat.volume area $[tomcat_priority + 5] $tomcat_update_every
61 DIMENSION volume '' incremental divisor ${tomcat_decimal_KB_detail}
62 CHART tomcat.threads '' "tomcat threads" "current threads" statistics tomcat.threads line $[tomcat_priority + 6] $tomcat_update_every
63 DIMENSION current '' absolute 1
64 DIMENSION busy '' absolute 1
65 CHART tomcat.jvm '' "JVM Free Memory" "MB" statistics tomcat.jvm area $[tomcat_priority + 8] $tomcat_update_every
66 DIMENSION jvm '' absolute 1 ${tomcat_decimal_detail}
67 EOF
68         return 0
69 }
70
71 # _update is called continiously, to collect the values
72 tomcat_update() {
73         local reqs net
74         # the first argument to this function is the microseconds since last update
75         # pass this parameter to the BEGIN statement (see bellow).
76
77         # do all the work to collect / calculate the values
78         # for each dimension
79         # remember: KEEP IT SIMPLE AND SHORT
80
81         tomcat_get || return 1
82
83         # write the result of the work.
84         cat <<VALUESEOF
85 BEGIN tomcat.accesses $1
86 SET accesses = $[tomcat_accesses]
87 END
88 BEGIN tomcat.volume $1
89 SET volume = $[tomcat_volume]
90 END
91 BEGIN tomcat.threads $1
92 SET current = $[tomcat_threads]
93 SET busy = $[tomcat_threads_busy]
94 END
95 BEGIN tomcat.jvm $1
96 SET jvm = $[tomcat_jvm_freememory]
97 END
98 VALUESEOF
99
100         return 0
101 }