]> arthur.barton.de Git - netdata.git/blob - charts.d/tomcat.chart.sh
Merge remote-tracking branch 'upstream/master'
[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 # usually http://localhost:8080/manager/status?XML=true
8 tomcat_url=""
9
10 # set tomcat username/password here
11 tomcatUser=""
12 tomcatPassword=""
13
14 # _update_every is a special variable - it holds the number of seconds
15 # between the calls of the _update() function
16 tomcat_update_every=
17
18 tomcat_priority=60000
19
20 # convert tomcat floating point values
21 # to integer using this multiplier
22 # this only affects precision - the values
23 # will be in the proper units
24 tomcat_decimal_detail=1000000
25
26 # used by volume chart to convert bytes to KB
27 tomcat_decimal_KB_detail=1000
28
29 tomcat_check() {
30
31         require_cmd xmlstarlet || return 1
32
33
34         # check if url, username, passwords are set
35         if [ -z "${tomcat_url}" ]; then
36                 echo >&2 "tomcat url is unset or set to the empty string"
37                 return 1
38         fi
39         if [ -z "${tomcatUser}" ]; then
40                 echo >&2 "tomcat user is unset or set to the empty string"
41                 return 1
42         fi
43         if [ -z "${tomcatPassword}" ]; then
44                 echo >&2 "tomcat password is unset or set to the empty string"
45                 return 1
46         fi
47
48         # check if we can get to tomcat's status page
49         tomcat_get
50         if [ $? -ne 0 ]
51                 then
52                 echo >&2 "tomcat: couldn't get to status page on URL '${tomcat_url}'."\
53                 "Please make sure tomcat url, username and password are correct."
54                 return 1
55         fi
56
57         # this should return:
58         #  - 0 to enable the chart
59         #  - 1 to disable the chart
60
61         return 0
62 }
63
64 tomcat_get() {
65         # collect tomcat values
66         tomcat_port="$(IFS=/ read -ra a <<< "$tomcat_url"; hostport=${a[2]}; echo "${hostport#*:}")"
67         mapfile -t lines < <(curl -u "$tomcatUser":"$tomcatPassword" -Ss "$tomcat_url" |\
68                 xmlstarlet sel \
69                         -t -m "/status/jvm/memory" -v @free \
70                         -n -m "/status/connector[@name='\"http-bio-$tomcat_port\"']/threadInfo" -v @currentThreadCount \
71                         -n -v @currentThreadsBusy \
72                         -n -m "/status/connector[@name='\"http-bio-$tomcat_port\"']/requestInfo" -v @requestCount \
73                         -n -v @bytesSent -n -)
74
75         tomcat_jvm_freememory="${lines[0]}"
76         tomcat_threads="${lines[1]}"
77         tomcat_threads_busy="${lines[2]}"
78         tomcat_accesses="${lines[3]}"
79         tomcat_volume="${lines[4]}"
80
81         return 0
82 }
83
84 # _create is called once, to create the charts
85 tomcat_create() {
86         cat <<EOF
87 CHART tomcat.accesses '' "tomcat requests" "requests/s" statistics tomcat.accesses area $((tomcat_priority + 8)) $tomcat_update_every
88 DIMENSION accesses '' incremental
89 CHART tomcat.volume '' "tomcat volume" "KB/s" volume tomcat.volume area $((tomcat_priority + 5)) $tomcat_update_every
90 DIMENSION volume '' incremental divisor ${tomcat_decimal_KB_detail}
91 CHART tomcat.threads '' "tomcat threads" "current threads" statistics tomcat.threads line $((tomcat_priority + 6)) $tomcat_update_every
92 DIMENSION current '' absolute 1
93 DIMENSION busy '' absolute 1
94 CHART tomcat.jvm '' "JVM Free Memory" "MB" statistics tomcat.jvm area $((tomcat_priority + 8)) $tomcat_update_every
95 DIMENSION jvm '' absolute 1 ${tomcat_decimal_detail}
96 EOF
97         return 0
98 }
99
100 # _update is called continiously, to collect the values
101 tomcat_update() {
102         local reqs net
103         # the first argument to this function is the microseconds since last update
104         # pass this parameter to the BEGIN statement (see bellow).
105
106         # do all the work to collect / calculate the values
107         # for each dimension
108         # remember: KEEP IT SIMPLE AND SHORT
109
110         tomcat_get || return 1
111
112         # write the result of the work.
113         cat <<VALUESEOF
114 BEGIN tomcat.accesses $1
115 SET accesses = $((tomcat_accesses))
116 END
117 BEGIN tomcat.volume $1
118 SET volume = $((tomcat_volume))
119 END
120 BEGIN tomcat.threads $1
121 SET current = $((tomcat_threads))
122 SET busy = $((tomcat_threads_busy))
123 END
124 BEGIN tomcat.jvm $1
125 SET jvm = $((tomcat_jvm_freememory))
126 END
127 VALUESEOF
128
129         return 0
130 }