1 # DO NOT EDIT - This file is being maintained by Chef
3 # Set maximum number of update processes to run at once
6 # Maximum number of graphs to generate at once
10 # Render pages and graphs on demand
15 rrdcached_socket /var/run/rrdcached.sock
17 # Configure alert targets
18 contact.admins.command mail -s "Munin Notification for ${var:host}" admins@openstreetmap.org
19 contact.admins.always_send invalid
20 contact.null.command cat > /dev/null
21 contact.null.always_send invalid
23 # Send alerts to the admins by default
26 # Ignore uncontactable hosts for twelve hours
28 <% @clients.sort { |a,b| a[:hostname] <=> b[:hostname] }.each do |client| -%>
30 # Configure monitoring for <%= client[:fqdn] %>
31 [<%= client[:hostname] %>.openstreetmap]
32 <% if Time.now - Time.at(client[:ohai_time]) > @expiry_time -%>
35 <% if client[:networking][:roles][:external][:zone] == "ucl" -%>
36 address <%= client.internal_ipaddress || client.external_ipaddress %>
37 <% elsif client[:networking][:roles][:external][:zone] == "ic" -%>
38 address <%= client.internal_ipaddress || client.external_ipaddress %>
39 <% elsif client[:networking][:roles][:external][:zone] == "bm" -%>
40 address <%= client.internal_ipaddress || client.external_ipaddress %>
41 <% elsif client.external_ipaddress -%>
42 address <%= client.external_ipaddress %>
45 <% if client[:munin][:plugins] -%>
46 <% client[:munin][:plugins].keys.sort.each do |plugin| -%>
47 <% client[:munin][:plugins][plugin].keys.sort.each do |value| -%>
48 <% if client[:munin][:plugins][plugin][value].kind_of?(Hash) -%>
49 <% if client[:munin][:plugins][plugin][value][:graph] -%>
50 <%= plugin %>.<%= value %>.graph <%= client[:munin][:plugins][plugin][value][:graph] %>
52 <% if client[:munin][:plugins][plugin][value][:draw] -%>
53 <%= plugin %>.<%= value %>.draw <%= client[:munin][:plugins][plugin][value][:draw] %>
55 <% if client[:munin][:plugins][plugin][value][:label] -%>
56 <%= plugin %>.<%= value %>.label <%= client[:munin][:plugins][plugin][value][:label] %>
58 <% if client[:munin][:plugins][plugin][value][:warning] -%>
59 <%= plugin %>.<%= value %>.warning <%= client[:munin][:plugins][plugin][value][:warning] %>
61 <% if client[:munin][:plugins][plugin][value][:critical] -%>
62 <%= plugin %>.<%= value %>.critical <%= client[:munin][:plugins][plugin][value][:critical] %>
65 <%= plugin %>.<%= value %> <%= client[:munin][:plugins][plugin][value] %>
70 <% if client[:munin][:graphs] -%>
71 <% client[:munin][:graphs].keys.sort.each do |graph| -%>
72 <% if client[:munin][:graphs][graph][:title] -%>
73 <%= graph %>.graph_title <%= client[:munin][:graphs][graph][:title] %>
75 <% if client[:munin][:graphs][graph][:vlabel] -%>
76 <%= graph %>.graph_vlabel <%= client[:munin][:graphs][graph][:vlabel] %>
78 <% if client[:munin][:graphs][graph][:category] -%>
79 <%= graph %>.graph_category <%= client[:munin][:graphs][graph][:category] %>
81 <% client[:munin][:graphs][graph][:values].keys.sort.each do |value| -%>
82 <% if client[:munin][:graphs][graph][:values][value][:sum] -%>
83 <%= graph %>.<%= value %>.sum <%= client[:munin][:graphs][graph][:values][value][:sum].join(" ") %>
85 <% if client[:munin][:graphs][graph][:values][value][:label] -%>
86 <%= graph %>.<%= value %>.label <%= client[:munin][:graphs][graph][:values][value][:label] %>
93 # Configure compound graphs for www.openstreetmap.org
96 apache_accesses.graph_title Apache accesses
97 apache_accesses.graph_vlabel accesses / ${graph_period}
98 apache_accesses.graph_category apache
99 apache_accesses.graph_args --lower-limit 0
100 apache_accesses.accesses80.sum <%= Chef::Munin.expand "%%.openstreetmap:apache_accesses.accesses80", @frontends %>
101 apache_accesses.accesses80.label port 80
102 apache_accesses.accesses80.min 0
103 apache_volume.graph_title Apache volume
104 apache_volume.graph_vlabel bytes per ${graph_period}
105 apache_volume.graph_category apache
106 apache_volume.graph_args --lower-limit 0
107 apache_volume.volume80.sum <%= Chef::Munin.expand "%%.openstreetmap:apache_volume.volume80", @frontends %>
108 apache_volume.volume80.label port 80
109 apache_volume.volume80.min 0
110 if_eth0.graph_title eth0 traffic
111 if_eth0.graph_vlabel bits in (-) / out (+) per ${graph_period}
112 if_eth0.graph_category network
113 if_eth0.graph_order down up
114 if_eth0.down.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth0.down", @frontends %>
115 if_eth0.down.label received
116 if_eth0.down.cdef down,8,*
117 if_eth0.up.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth0.up", @frontends %>
118 if_eth0.up.label sent
119 if_eth0.up.cdef up,8,*
120 if_eth1.graph_title eth1 traffic
121 if_eth1.graph_vlabel bits in (-) / out (+) per ${graph_period}
122 if_eth1.graph_category network
123 if_eth1.graph_order down up
124 if_eth1.down.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth1.down", @frontends %>
125 if_eth1.down.label received
126 if_eth1.down.cdef down,8,*
127 if_eth1.up.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth1.up", @frontends %>
128 if_eth1.up.label sent
129 if_eth1.up.cdef up,8,*
130 api_calls_www.graph_title Active requests
131 api_calls_www.graph_vlabel Number of requests
132 api_calls_www.graph_category api
133 api_calls_www.graph_order map upload amf history full trkpts web other
134 api_calls_www.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.web", @frontends %>
135 api_calls_www.web.label Web site traffic
136 api_calls_www.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.upload", @frontends %>
137 api_calls_www.upload.label Changeset diff uploads
138 api_calls_www.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.other", @frontends %>
139 api_calls_www.other.label Other API calls
140 api_calls_www.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.amf", @frontends %>
141 api_calls_www.amf.label AMF API calls
142 api_calls_www.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.history", @frontends %>
143 api_calls_www.history.label Element history fetches
144 api_calls_www.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.full", @frontends %>
145 api_calls_www.full.label Full element fetches
146 api_calls_www.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.map", @frontends %>
147 api_calls_www.map.label Map API calls
148 api_calls_www.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.trkpts", @frontends %>
149 api_calls_www.trkpts.label GPX trackpoints calls
150 api_calls_error.graph_title HTTP errors
151 api_calls_error.graph_vlabel Number of errors per ${graph_period}
152 api_calls_error.graph_category api
153 api_calls_error.graph_order http401 http500 http502 http503 http509
154 api_calls_error.http401.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http401", @frontends %>
155 api_calls_error.http401.label 401 Unauthorized
156 api_calls_error.http401.warning :0.5
157 api_calls_error.http500.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http500", @frontends %>
158 api_calls_error.http500.label 500 Internal Server Error
159 api_calls_error.http500.warning :0.5
160 api_calls_error.http502.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http502", @frontends %>
161 api_calls_error.http502.label 502 Bad Gateway
162 api_calls_error.http502.warning :0.5
163 api_calls_error.http503.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http503", @frontends %>
164 api_calls_error.http503.label 503 Service Unavailable
165 api_calls_error.http503.warning :0.5
166 api_calls_error.http509.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http509", @frontends %>
167 api_calls_error.http509.label 509 Bandwidth Limit Exceeded
168 api_calls_error.http509.warning :5
169 api_calls_num.graph_title Requests processed
170 api_calls_num.graph_vlabel Number of requests per ${graph_period}
171 api_calls_num.graph_category api
172 api_calls_num.graph_order map upload amf history full trkpts web other
173 api_calls_num.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.web", @frontends %>
174 api_calls_num.web.label Web site traffic
175 api_calls_num.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.upload", @frontends %>
176 api_calls_num.upload.label Changeset diff uploads
177 api_calls_num.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.other", @frontends %>
178 api_calls_num.other.label Other API calls
179 api_calls_num.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.amf", @frontends %>
180 api_calls_num.amf.label AMF API calls
181 api_calls_num.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.history", @frontends %>
182 api_calls_num.history.label Element history fetches
183 api_calls_num.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.full", @frontends %>
184 api_calls_num.full.label Full element fetches
185 api_calls_num.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.map", @frontends %>
186 api_calls_num.map.label Map API calls
187 api_calls_num.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.trkpts", @frontends %>
188 api_calls_num.trkpts.label GPX trackpoints calls
189 api_waits_www.graph_title Wait times for active requests
190 api_waits_www.graph_vlabel Average time of requests
191 api_waits_www.graph_category api
192 api_waits_www.graph_order map upload amf history full trkpts web other
193 api_waits_www.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.web", @frontends %>
194 api_waits_www.web.label Web site traffic
195 api_waits_www.web.cdef web,2,/
196 api_waits_www.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.upload", @frontends %>
197 api_waits_www.upload.label Changeset diff uploads
198 api_waits_www.upload.cdef upload,2,/
199 api_waits_www.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.other", @frontends %>
200 api_waits_www.other.label Other API calls
201 api_waits_www.other.cdef other,2,/
202 api_waits_www.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.amf", @frontends %>
203 api_waits_www.amf.label AMF API calls
204 api_waits_www.amf.cdef amf,2,/
205 api_waits_www.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.history", @frontends %>
206 api_waits_www.history.label Element history fetches
207 api_waits_www.history.cdef history,2,/
208 api_waits_www.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.full", @frontends %>
209 api_waits_www.full.label Full element fetches
210 api_waits_www.full.cdef full,2,/
211 api_waits_www.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.map", @frontends %>
212 api_waits_www.map.label Map API calls
213 api_waits_www.map.cdef map,2,/
214 api_waits_www.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.trkpts", @frontends %>
215 api_waits_www.trkpts.label GPX trackpoints calls
216 api_waits_www.trkpts.cdef trkpts,2,/
217 memcached_multi_commands.graph_title Commands
218 memcached_multi_commands.graph_vlabel Commands per ${graph_period}
219 memcached_multi_commands.graph_category memcached
220 memcached_multi_commands.graph_order cmd_get cmd_set cmd_touch get_hits get_misses delete_hits delete_misses incr_hits incr_misses decr_hits decr_misses touch_hits touch_misses
221 memcached_multi_commands.cmd_get.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_get", @backends %>
222 memcached_multi_commands.cmd_get.label Gets
223 memcached_multi_commands.cmd_set.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_set", @backends %>
224 memcached_multi_commands.cmd_set.label Sets
225 memcached_multi_commands.cmd_touch.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_touch", @backends %>
226 memcached_multi_commands.cmd_touch.label Touches
227 memcached_multi_commands.get_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.get_hits", @backends %>
228 memcached_multi_commands.get_hits.label Get Hits
229 memcached_multi_commands.get_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.get_misses", @backends %>
230 memcached_multi_commands.get_misses.label Get Misses
231 memcached_multi_commands.delete_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.delete_hits", @backends %>
232 memcached_multi_commands.delete_hits.label Delete Hits
233 memcached_multi_commands.delete_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.delete_misses", @backends %>
234 memcached_multi_commands.delete_misses.label Delete Misses
235 memcached_multi_commands.incr_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.incr_hits", @backends %>
236 memcached_multi_commands.incr_hits.label Increment Hits
237 memcached_multi_commands.incr_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.incr_misses", @backends %>
238 memcached_multi_commands.incr_misses.label Increment Misses
239 memcached_multi_commands.decr_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.decr_hits", @backends %>
240 memcached_multi_commands.decr_hits.label Decrement Hits
241 memcached_multi_commands.decr_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.decr_misses", @backends %>
242 memcached_multi_commands.decr_misses.label Decrement Misses
243 memcached_multi_commands.touch_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.touch_hits", @backends %>
244 memcached_multi_commands.touch_hits.label Touch Hits
245 memcached_multi_commands.touch_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.touch_misses", @backends %>
246 memcached_multi_commands.touch_misses.label Touch Misses
247 memcached_multi_conns.graph_title Connections
248 memcached_multi_conns.graph_vlabel Connections per ${graph_period}
249 memcached_multi_conns.graph_category memcached
250 memcached_multi_conns.graph_order max_conns curr_conns avg_conns
251 memcached_multi_conns.curr_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.curr_conns", @backends %>
252 memcached_multi_conns.curr_conns.label Current Connections
253 memcached_multi_conns.max_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.max_conns", @backends %>
254 memcached_multi_conns.max_conns.label Max Connections
255 memcached_multi_conns.avg_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.avg_conns", @backends %>
256 memcached_multi_conns.avg_conns.label Avg Connections
257 memcached_multi_evictions.graph_title Evictions
258 memcached_multi_evictions.graph_vlabel Evictions per ${graph_period}
259 memcached_multi_evictions.graph_category memcached
260 memcached_multi_evictions.evictions.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.evictions", @backends %>
261 memcached_multi_evictions.evictions.label Evictions
262 memcached_multi_evictions.evicted_nonzero.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.evicted_nonzero", @backends %>
263 memcached_multi_evictions.evicted_nonzero.label Evictions prior to Expire
264 memcached_multi_evictions.reclaimed.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.reclaimed", @backends %>
265 memcached_multi_evictions.reclaimed.label Reclaimed Items
266 memcached_multi_items.graph_title Items
267 memcached_multi_items.graph_vlabel Items in Memcached
268 memcached_multi_items.graph_category memcached
269 memcached_multi_items.graph_order curr_items total_items
270 memcached_multi_items.curr_items.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_items.curr_items", @backends %>
271 memcached_multi_items.curr_items.label Current Items
272 memcached_multi_items.total_items.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_items.total_items", @backends %>
273 memcached_multi_items.total_items.label New Items
274 memcached_multi_memory.graph_title Memory Usage
275 memcached_multi_memory.graph_vlabel Bytes Used
276 memcached_multi_memory.graph_category memcached
277 memcached_multi_memory.graph_order limit_maxbytes bytes
278 memcached_multi_memory.limit_maxbytes.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_memory.limit_maxbytes", @backends %>
279 memcached_multi_memory.limit_maxbytes.label Maximum Bytes Allocated
280 memcached_multi_memory.bytes.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_memory.bytes", @backends %>
281 memcached_multi_memory.bytes.label Current Bytes Used
282 memcached_multi_bytes.graph_title Network Traffic
283 memcached_multi_bytes.graph_args --base 1000
284 memcached_multi_bytes.graph_vlabel bits in (-) / out (+)
285 memcached_multi_bytes.graph_category memcached
286 memcached_multi_bytes.graph_order bytes_read bytes_written
287 memcached_multi_bytes.bytes_read.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_bytes.bytes_read", @backends %>
288 memcached_multi_bytes.bytes_read.label Network Traffic coming in (-)
289 memcached_multi_bytes.bytes_read.cdef bytes_read,8,*
290 memcached_multi_bytes.bytes_read.graph no
291 memcached_multi_bytes.bytes_written.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_bytes.bytes_written", @backends %>
292 memcached_multi_bytes.bytes_written.negative bytes_read
293 memcached_multi_bytes.bytes_written.label Traffic in (-) / out (+)
294 memcached_multi_bytes.bytes_written.cdef bytes_written,8,*
296 # Configure compound graphs for tile.openstreetmap.org
299 network_in.graph_title Inbound network traffic
300 network_in.graph_vlabel bits in per ${graph_period}
301 network_in.graph_category network
302 network_in.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:if_%%interface%%.down", @tilecaches %>
303 network_in.graph_total total
304 network_in.graph_args --lower-limit 0
305 <% @tilecaches.each do |tc| -%>
306 network_in.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
307 network_in.<%= tc[:name].tr("-", "_") %>.cdef <%= tc[:name].tr("-", "_") %>,8,*
308 network_in.<%= tc[:name].tr("-", "_") %>.draw AREASTACK
309 network_in.<%= tc[:name].tr("-", "_") %>.min 0
311 network_out.graph_title Outbound network traffic
312 network_out.graph_vlabel bits out per ${graph_period}
313 network_out.graph_category network
314 network_out.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:if_%%interface%%.up", @tilecaches %>
315 network_out.graph_total total
316 network_out.graph_args --lower-limit 0
317 <% @tilecaches.each do |tc| -%>
318 network_out.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
319 network_out.<%= tc[:name].tr("-", "_") %>.cdef <%= tc[:name].tr("-", "_") %>,8,*
320 network_out.<%= tc[:name].tr("-", "_") %>.draw AREASTACK
321 network_out.<%= tc[:name].tr("-", "_") %>.min 0
323 squid_delay_pools.graph_title IPs being delayed with referer
324 squid_delay_pools.graph_args --base 1000 -l 0
325 squid_delay_pools.graph_vlabel IPs
326 squid_delay_pools.graph_order squid_delay1
327 squid_delay_pools.graph_category squid
328 squid_delay_pools.squid_delay1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_delay_pools.squid_delay1", @tilecaches %>
329 squid_delay_pools.squid_delay1.label IPs
330 squid_delay_pools.squid_delay1.min 0
331 squid_delay_pools.squid_delay1.draw AREA
332 squid_delay_pools_noreferer.graph_title No-referer IPs being delayed
333 squid_delay_pools_noreferer.graph_args --base 1000 -l 0
334 squid_delay_pools_noreferer.graph_vlabel IPs
335 squid_delay_pools_noreferer.graph_order squid_delay2
336 squid_delay_pools_noreferer.graph_category squid
337 squid_delay_pools_noreferer.squid_delay2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_delay_pools_noreferer.squid_delay2", @tilecaches %>
338 squid_delay_pools_noreferer.squid_delay2.label IPs
339 squid_delay_pools_noreferer.squid_delay2.min 0
340 squid_delay_pools_noreferer.squid_delay2.draw AREA
341 squid_requests.graph_title Squid client requests
342 squid_requests.graph_args --base 1000 -l 0
343 squid_requests.graph_vlabel requests / ${graph_period}
344 squid_requests.graph_order <%= Chef::Munin.expand "%%%name%%%_hits=%%name%%.openstreetmap:squid_requests.hits %%%name%%%_errors=%%name%%.openstreetmap:squid_requests.errors %%%name%%%_requests=%%name%%.openstreetmap:squid_requests.requests", @tilecaches %> hits=<%= @tilecaches.first[:name] %>.openstreetmap:squid_requests.hits errors=<%= @tilecaches.first[:name] %>.openstreetmap:squid_requests.errors requests=<%= @tilecaches.first[:name] %>.openstreetmap:squid_requests.requests
345 squid_requests.graph_total total
346 squid_requests.graph_category squid
347 <% @tilecaches.each do |tc| -%>
348 squid_requests.<%= tc[:name].tr("-", "_") %>_hits.graph no
349 squid_requests.<%= tc[:name].tr("-", "_") %>_errors.graph no
350 squid_requests.<%= tc[:name].tr("-", "_") %>_requests.graph no
352 squid_requests.hits.cdef 0,<%= Chef::Munin.expand "%%%name%%%_hits", @tilecaches, ",+," %>,+
353 squid_requests.hits.label hits
354 squid_requests.hits.draw AREA
355 squid_requests.errors.cdef 0,<%= Chef::Munin.expand "%%%name%%%_errors", @tilecaches, ",+," %>,+
356 squid_requests.errors.label errors
357 squid_requests.errors.draw STACK
358 squid_requests.requests.cdef 0,<%= Chef::Munin.expand "%%%name%%%_requests", @tilecaches, ",+," %>,+,hits,-,errors,-
359 squid_requests.requests.label misses
360 squid_requests.requests.draw STACK
361 squid_traffic.graph_title Squid traffic status
362 squid_traffic.graph_args --base 1000
363 squid_traffic.graph_vlabel bits per ${graph_period}
364 squid_traffic.graph_order kbytes_in kbytes_out hit_kbytes_out
365 squid_traffic.graph_category squid
366 squid_traffic.kbytes_in.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.kbytes_in", @tilecaches %>
367 squid_traffic.kbytes_in.label received
368 squid_traffic.kbytes_in.cdef kbytes_in,8096,*
369 squid_traffic.kbytes_out.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.kbytes_out", @tilecaches %>
370 squid_traffic.kbytes_out.label sent
371 squid_traffic.kbytes_out.cdef kbytes_out,8096,*
372 squid_traffic.hit_kbytes_out.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.hit_kbytes_out", @tilecaches %>
373 squid_traffic.hit_kbytes_out.label from cache
374 squid_traffic.hit_kbytes_out.cdef hit_kbytes_out,8096,*
375 squid_times_http.graph_title Squid Http Service Times
376 squid_times_http.graph_category squid
377 squid_times_http.graph_args --lower-limit 0
378 squid_times_http.graph_vlabel median reponse times (s)
379 squid_times_http.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_http", @tilecaches %>
380 <% @tilecaches.each do |tc| -%>
381 squid_times_http.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
383 squid_times_cmis.graph_title Squid Cache Miss Service Times
384 squid_times_cmis.graph_category squid
385 squid_times_cmis.graph_args --lower-limit 0
386 squid_times_cmis.graph_vlabel median reponse times (s)
387 squid_times_cmis.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_cmis", @tilecaches %>
388 <% @tilecaches.each do |tc| -%>
389 squid_times_cmis.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
391 squid_times_chits.graph_title Squid Cache Hit Service Times
392 squid_times_chits.graph_category squid
393 squid_times_chits.graph_args --lower-limit 0
394 squid_times_chits.graph_vlabel median reponse times (s)
395 squid_times_chits.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_chits", @tilecaches %>
396 <% @tilecaches.each do |tc| -%>
397 squid_times_chits.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
399 squid_times_nhits.graph_title Squid Cache Near Hit Service Times
400 squid_times_nhits.graph_category squid
401 squid_times_nhits.graph_args --lower-limit 0
402 squid_times_nhits.graph_vlabel median reponse times (s)
403 squid_times_nhits.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_nhits", @tilecaches %>
404 <% @tilecaches.each do |tc| -%>
405 squid_times_nhits.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
407 squid_times_nmr.graph_title Squid Cache Not Modified Service Times
408 squid_times_nmr.graph_category squid
409 squid_times_nmr.graph_args --lower-limit 0
410 squid_times_nmr.graph_vlabel median reponse times (s)
411 squid_times_nmr.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_nmr", @tilecaches %>
412 <% @tilecaches.each do |tc| -%>
413 squid_times_nmr.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
415 squid_times_dnsl.graph_title Squid Cache DNS Lookup Service Times
416 squid_times_dnsl.graph_category squid
417 squid_times_dnsl.graph_args --lower-limit 0
418 squid_times_dnsl.graph_vlabel median reponse times (s)
419 squid_times_dnsl.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:squid_times.mean_dnsl", @tilecaches %>
420 <% @tilecaches.each do |tc| -%>
421 squid_times_dnsl.<%= tc[:name].tr("-", "_") %>.label <%= tc[:name] %>
423 squid_request_hitrates.graph_title Squid Cache Request Hit Rates
424 squid_request_hitrates.graph_category squid
425 squid_request_hitrates.graph_args --lower-limit 0 --upper-limit 100
426 squid_request_hitrates.graph_vlabel %
427 squid_request_hitrates.graph_order <%= Chef::Munin.expand "%%%name%%%_total=%%name%%.openstreetmap:squid_requests.requests %%%name%%%_hits=%%name%%.openstreetmap:squid_requests.hits", @tilecaches %>
428 <% @tilecaches.each do |tc| -%>
429 squid_request_hitrates.<%= tc[:name].tr("-", "_") %>_total.graph no
430 squid_request_hitrates.<%= tc[:name].tr("-", "_") %>_hits.cdef <%= tc[:name].tr("-", "_") %>_hits,<%= tc[:name].tr("-", "_") %>_total,/,100,*
431 squid_request_hitrates.<%= tc[:name].tr("-", "_") %>_hits.label <%= tc[:name] %>
432 squid_request_hitrates.<%= tc[:name].tr("-", "_") %>_hits.draw LINE1
434 squid_byte_hitrates.graph_title Squid Cache Byte Hit Rates
435 squid_byte_hitrates.graph_category squid
436 squid_byte_hitrates.graph_args --lower-limit 0 --upper-limit 100
437 squid_byte_hitrates.graph_vlabel %
438 squid_byte_hitrates.graph_order <%= Chef::Munin.expand "%%%name%%%_total=%%name%%.openstreetmap:squid_traffic.kbytes_out %%%name%%%_hits=%%name%%.openstreetmap:squid_traffic.hit_kbytes_out", @tilecaches %>
439 <% @tilecaches.each do |tc| -%>
440 squid_byte_hitrates.<%= tc[:name].tr("-", "_") %>_total.graph no
441 squid_byte_hitrates.<%= tc[:name].tr("-", "_") %>_hits.cdef <%= tc[:name].tr("-", "_") %>_hits,<%= tc[:name].tr("-", "_") %>_total,/,100,*
442 squid_byte_hitrates.<%= tc[:name].tr("-", "_") %>_hits.label <%= tc[:name] %>
443 squid_byte_hitrates.<%= tc[:name].tr("-", "_") %>_hits.draw LINE1
446 # Configure compound graphs for render.openstreetmap.org
447 [render.openstreetmap]
449 apache_accesses.graph_title Apache accesses
450 apache_accesses.graph_vlabel accesses / ${graph_period}
451 apache_accesses.graph_category apache
452 apache_accesses.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:apache_accesses.accesses80", @renderers %>
453 apache_accesses.graph_total total
454 apache_accesses.graph_args --lower-limit 0
455 <% @renderers.each do |rs| -%>
456 apache_accesses.<%= rs[:name].tr("-", "_") %>.label <%= rs[:name] %>
457 apache_accesses.<%= rs[:name].tr("-", "_") %>.draw AREASTACK
458 apache_accesses.<%= rs[:name].tr("-", "_") %>.min 0
460 apache_volume.graph_title Apache volume
461 apache_volume.graph_vlabel bytes per ${graph_period}
462 apache_volume.graph_category apache
463 apache_volume.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:apache_volume.volume80", @renderers %>
464 apache_volume.graph_total total
465 apache_volume.graph_args --lower-limit 0
466 <% @renderers.each do |rs| -%>
467 apache_volume.<%= rs[:name].tr("-", "_") %>.label <%= rs[:name] %>
468 apache_volume.<%= rs[:name].tr("-", "_") %>.draw AREASTACK
469 apache_volume.<%= rs[:name].tr("-", "_") %>.min 0
471 network_in.graph_title Inbound network traffic
472 network_in.graph_vlabel bits in per ${graph_period}
473 network_in.graph_category network
474 network_in.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:if_%%interface%%.down", @renderers %>
475 network_in.graph_total total
476 network_in.graph_args --lower-limit 0
477 <% @renderers.each do |rs| -%>
478 network_in.<%= rs[:name].tr("-", "_") %>.label <%= rs[:name] %>
479 network_in.<%= rs[:name].tr("-", "_") %>.cdef <%= rs[:name].tr("-", "_") %>,8,*
480 network_in.<%= rs[:name].tr("-", "_") %>.draw AREASTACK
481 network_in.<%= rs[:name].tr("-", "_") %>.min 0
483 network_out.graph_title Outbound network traffic
484 network_out.graph_vlabel bits out per ${graph_period}
485 network_out.graph_category network
486 network_out.graph_order <%= Chef::Munin.expand "%%%name%%%=%%name%%.openstreetmap:if_%%interface%%.up", @renderers %>
487 network_out.graph_total total
488 network_out.graph_args --lower-limit 0
489 <% @renderers.each do |rs| -%>
490 network_out.<%= rs[:name].tr("-", "_") %>.label <%= rs[:name] %>
491 network_out.<%= rs[:name].tr("-", "_") %>.cdef <%= rs[:name].tr("-", "_") %>,8,*
492 network_out.<%= rs[:name].tr("-", "_") %>.draw AREASTACK
493 network_out.<%= rs[:name].tr("-", "_") %>.min 0
495 mod_tile_fresh.graph_title freshness of served tiles
496 mod_tile_fresh.graph_args --base 1000 -l 0
497 mod_tile_fresh.graph_vlabel tiles per ${graph_period}
498 mod_tile_fresh.graph_order fresh freshrender old oldrender outdated outdatedrender
499 mod_tile_fresh.graph_category mod_tile
500 mod_tile_fresh.fresh.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.fresh", @renderers %>
501 mod_tile_fresh.fresh.label Fresh from disk
502 mod_tile_fresh.fresh.draw AREA
503 mod_tile_fresh.freshrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.freshrender", @renderers %>
504 mod_tile_fresh.freshrender.label Freshly rendered
505 mod_tile_fresh.freshrender.draw STACK
506 mod_tile_fresh.old.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.old", @renderers %>
507 mod_tile_fresh.old.label Old from disk
508 mod_tile_fresh.old.draw STACK
509 mod_tile_fresh.oldrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.oldrender", @renderers %>
510 mod_tile_fresh.oldrender.label Old tile, attempted render
511 mod_tile_fresh.oldrender.draw STACK
512 mod_tile_fresh.outdated.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.outdated", @renderers %>
513 mod_tile_fresh.outdated.label Outdated from disk
514 mod_tile_fresh.outdated.draw STACK
515 mod_tile_fresh.outdatedrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.outdatedrender", @renderers %>
516 mod_tile_fresh.outdatedrender.label Outdated tile, attempted render
517 mod_tile_fresh.outdatedrender.draw STACK
518 mod_tile_response.graph_title mod_tile HTTP response codes
519 mod_tile_response.graph_args --base 1000 -l 0
520 mod_tile_response.graph_vlabel responses per ${graph_period}
521 mod_tile_response.graph_order response200 response304 response404 response500
522 mod_tile_response.graph_category mod_tile
523 mod_tile_response.response200.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response200", @renderers %>
524 mod_tile_response.response200.label 200 OK
525 mod_tile_response.response200.draw AREA
526 mod_tile_response.response304.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response304", @renderers %>
527 mod_tile_response.response304.label 304 Not Modified
528 mod_tile_response.response304.draw STACK
529 mod_tile_response.response404.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response404", @renderers %>
530 mod_tile_response.response404.label 404 Not Found
531 mod_tile_response.response404.draw STACK
532 mod_tile_response.response500.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response500", @renderers %>
533 mod_tile_response.response500.label 500 Internal Error
534 mod_tile_response.response500.draw STACK
535 mod_tile_zoom.graph_title mod_tile responses by zoom layer
536 mod_tile_zoom.graph_args --base 1000 -l 0
537 mod_tile_zoom.graph_vlabel responses per ${graph_period}
538 mod_tile_zoom.graph_order z1 z2 z3 z4 z5 z6
539 mod_tile_zoom.graph_category mod_tile
540 mod_tile_zoom.z1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z1", @renderers %>
541 mod_tile_zoom.z1.label z1-8
542 mod_tile_zoom.z1.draw AREA
543 mod_tile_zoom.z2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z2", @renderers %>
544 mod_tile_zoom.z2.label z9-12
545 mod_tile_zoom.z2.draw STACK
546 mod_tile_zoom.z3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z3", @renderers %>
547 mod_tile_zoom.z3.label z13-14
548 mod_tile_zoom.z3.draw STACK
549 mod_tile_zoom.z4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z4", @renderers %>
550 mod_tile_zoom.z4.label z15-16
551 mod_tile_zoom.z4.draw STACK
552 mod_tile_zoom.z5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z5", @renderers %>
553 mod_tile_zoom.z5.label z17-18
554 mod_tile_zoom.z5.draw STACK
555 mod_tile_zoom.z6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z6", @renderers %>
556 mod_tile_zoom.z6.label z19-20
557 mod_tile_zoom.z6.draw STACK
558 renderd_queue.graph_title Renderd queue length
559 renderd_queue.graph_args --base 1000 -l 0
560 renderd_queue.graph_vlabel metatiles
561 renderd_queue.graph_order reqPrio req reqLow dirty reqBulk
562 renderd_queue.graph_category renderd
563 renderd_queue.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqPrio", @renderers %>
564 renderd_queue.reqPrio.label Priority request Queue
565 renderd_queue.reqPrio.type GAUGE
566 renderd_queue.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.req", @renderers %>
567 renderd_queue.req.label Request Queue
568 renderd_queue.req.type GAUGE
569 renderd_queue.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqLow", @renderers %>
570 renderd_queue.reqLow.label Low priority request Queue
571 renderd_queue.reqLow.type GAUGE
572 renderd_queue.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.dirty", @renderers %>
573 renderd_queue.dirty.label Dirty Queue
574 renderd_queue.dirty.type GAUGE
575 renderd_queue.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqBulk", @renderers %>
576 renderd_queue.reqBulk.label Bulk request Queue
577 renderd_queue.reqBulk.type GAUGE
578 renderd_processed.graph_title Renderd throughput
579 renderd_processed.graph_args --base 1000 -l 0
580 renderd_processed.graph_vlabel Metatiles per ${graph_period}
581 renderd_processed.graph_order reqPrio req reqLow dirty reqBulk dropped
582 renderd_processed.graph_category renderd
583 renderd_processed.graph_info Displays the number of metatiles being rendered by renderd per ${graph_period}
584 renderd_processed.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqPrio", @renderers %>
585 renderd_processed.reqPrio.label Priority request Queue
586 renderd_processed.reqPrio.draw AREA
587 renderd_processed.reqPrio.info Throughput of Metatiles submitted high priority for on the fly rendering
588 renderd_processed.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.req", @renderers %>
589 renderd_processed.req.label Request Queue
590 renderd_processed.req.draw STACK
591 renderd_processed.req.info Throughput of Metatiles submitted for on the fly rendering
592 renderd_processed.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqLow", @renderers %>
593 renderd_processed.reqLow.label Low priority request Queue
594 renderd_processed.reqLow.draw STACK
595 renderd_processed.reqLow.info Throughput of Metatiles submitted low priority for on the fly rendering
596 renderd_processed.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.dirty", @renderers %>
597 renderd_processed.dirty.label Dirty Queue
598 renderd_processed.dirty.draw STACK
599 renderd_processed.dirty.info Throughput of dirty Metatiles submitted for re-render
600 renderd_processed.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqBulk", @renderers %>
601 renderd_processed.reqBulk.label Bulk request Queue
602 renderd_processed.reqBulk.draw STACK
603 renderd_processed.reqBulk.info Throughput of Metatiles submitted with background priority
604 renderd_processed.dropped.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.dropped", @renderers %>
605 renderd_processed.dropped.label Dropped (x20)
606 renderd_processed.dropped.draw LINE2
607 renderd_processed.dropped.info Number of Tiles dropped due to queue overload (x20)
608 renderd_processed.dropped.cdef dropped,20,/
609 renderd_zoom.graph_title Renderd throughput by zoom
610 renderd_zoom.graph_args --base 1000 -l 0
611 renderd_zoom.graph_vlabel Metatiles per ${graph_period}
612 renderd_zoom.graph_order z1 z2 z3 z4 z5 z6
613 renderd_zoom.graph_category renderd
614 renderd_zoom.graph_info Displays the number of metatiles being rendered by renderd per ${graph_period}
615 renderd_zoom.z1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z1", @renderers %>
616 renderd_zoom.z1.label zoom z0 - z8
617 renderd_zoom.z1.draw AREA
618 renderd_zoom.z1.info Throughput of Metatiles for z0 - z8
619 renderd_zoom.z2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z2", @renderers %>
620 renderd_zoom.z2.label zoom z9 - z12
621 renderd_zoom.z2.draw STACK
622 renderd_zoom.z2.info Throughput of Metatiles for z9 - z12
623 renderd_zoom.z3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z3", @renderers %>
624 renderd_zoom.z3.label zoom z13 - z14
625 renderd_zoom.z3.draw STACK
626 renderd_zoom.z3.info Throughput of Metatiles for z13 - z14
627 renderd_zoom.z4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z4", @renderers %>
628 renderd_zoom.z4.label zoom z15 - z16
629 renderd_zoom.z4.draw STACK
630 renderd_zoom.z4.info Throughput of Metatiles for z15 - z16
631 renderd_zoom.z5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z5", @renderers %>
632 renderd_zoom.z5.label zoom z17 - z18
633 renderd_zoom.z5.draw STACK
634 renderd_zoom.z5.info Throughput of Metatiles for z17 - z18
635 renderd_zoom.z6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z6", @renderers %>
636 renderd_zoom.z6.label zoom z19 - z20
637 renderd_zoom.z6.draw STACK
638 renderd_zoom.z6.info Throughput of Metatiles for z19 - z20
639 renderd_queue_time.graph_title Renderd time spent by queue
640 renderd_queue_time.graph_args --base 1000 -l 0
641 renderd_queue_time.graph_vlabel metatiles
642 renderd_queue_time.graph_order reqPrio req reqLow dirty reqBulk
643 renderd_queue_time.graph_category renderd
644 renderd_queue_time.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqPrio", @renderers %>
645 renderd_queue_time.reqPrio.label Priority request queue
646 renderd_queue_time.reqPrio.cdef reqPrio,1000,/
647 renderd_queue_time.reqPrio.draw AREA
648 renderd_queue_time.reqPrio.info Time for priority request queue
649 renderd_queue_time.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.req", @renderers %>
650 renderd_queue_time.req.label Request queue
651 renderd_queue_time.req.cdef req,1000,/
652 renderd_queue_time.req.draw STACK
653 renderd_queue_time.req.info Time for Request queue
654 renderd_queue_time.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqLow", @renderers %>
655 renderd_queue_time.reqLow.label Low priority request queue
656 renderd_queue_time.reqLow.cdef reqLow,1000,/
657 renderd_queue_time.reqLow.draw STACK
658 renderd_queue_time.reqLow.info Time for low priority request queue
659 renderd_queue_time.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.dirty", @renderers %>
660 renderd_queue_time.dirty.label Dirty queue
661 renderd_queue_time.dirty.cdef dirty,1000,/
662 renderd_queue_time.dirty.draw STACK
663 renderd_queue_time.dirty.info Time for dirty queue
664 renderd_queue_time.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqBulk", @renderers %>
665 renderd_queue_time.reqBulk.label Bulk queue
666 renderd_queue_time.reqBulk.cdef reqBulk,1000,/
667 renderd_queue_time.reqBulk.draw STACK
668 renderd_queue_time.reqBulk.info Time for bulk queue
669 renderd_zoom_time.graph_title Renderd time spent by zoom
670 renderd_zoom_time.graph_args --base 1000 -l 0
671 renderd_zoom_time.graph_vlabel time spent per ${graph_period}
672 renderd_zoom_time.graph_order zoomtime1 zoomtime2 zoomtime3 zoomtime4 zoomtime5 zoomtime6
673 renderd_zoom_time.graph_category renderd
674 renderd_zoom_time.graph_info Displays the amount of time renderd has spent rendering tiles of a given zoom per ${graph_period}
675 renderd_zoom_time.zoomtime1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime1", @renderers %>
676 renderd_zoom_time.zoomtime1.label zoom z0 - z8
677 renderd_zoom_time.zoomtime1.cdef zoomtime1,1000,/
678 renderd_zoom_time.zoomtime1.draw AREA
679 renderd_zoom_time.zoomtime1.info Time for Metatiles z0 - z8
680 renderd_zoom_time.zoomtime2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime2", @renderers %>
681 renderd_zoom_time.zoomtime2.label zoom z9 - z12
682 renderd_zoom_time.zoomtime2.cdef zoomtime2,1000,/
683 renderd_zoom_time.zoomtime2.draw STACK
684 renderd_zoom_time.zoomtime2.info Time for Metatiles for z9 - z12
685 renderd_zoom_time.zoomtime3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime3", @renderers %>
686 renderd_zoom_time.zoomtime3.label zoom z13 - z14
687 renderd_zoom_time.zoomtime3.cdef zoomtime3,1000,/
688 renderd_zoom_time.zoomtime3.draw STACK
689 renderd_zoom_time.zoomtime3.info Time for Metatiles for z13 - z14
690 renderd_zoom_time.zoomtime4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime4", @renderers %>
691 renderd_zoom_time.zoomtime4.label zoom z15 - z16
692 renderd_zoom_time.zoomtime4.cdef zoomtime4,1000,/
693 renderd_zoom_time.zoomtime4.draw STACK
694 renderd_zoom_time.zoomtime4.info Time for Metatiles for z15 - z16
695 renderd_zoom_time.zoomtime5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime5", @renderers %>
696 renderd_zoom_time.zoomtime5.label zoom z17 - z18
697 renderd_zoom_time.zoomtime5.cdef zoomtime5,1000,/
698 renderd_zoom_time.zoomtime5.draw STACK
699 renderd_zoom_time.zoomtime5.info Time for Metatiles for z17 - z18
700 renderd_zoom_time.zoomtime6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime6", @renderers %>
701 renderd_zoom_time.zoomtime6.label zoom z19 - z20
702 renderd_zoom_time.zoomtime6.cdef zoomtime6,1000,/
703 renderd_zoom_time.zoomtime6.draw STACK
704 renderd_zoom_time.zoomtime6.info Time for Metatiles for z19 - z20
705 <% unless @geocoders.empty? -%>
707 # Configure compound graphs for nominatim.openstreetmap.org
708 [nominatim.openstreetmap]
710 nominatim_requests.graph_title Requests by API call
711 nominatim_requests.graph_args --base 1000 -l 0
712 nominatim_requests.graph_vlabel requests per minute
713 nominatim_requests.graph_category nominatim
714 nominatim_requests.graph_order z1 z2 z3 z4
715 nominatim_requests.z1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_requests.z1", @geocoders %>
716 nominatim_requests.z1.label reverse
717 nominatim_requests.z1.draw AREA
718 nominatim_requests.z1.type GAUGE
719 nominatim_requests.z2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_requests.z2", @geocoders %>
720 nominatim_requests.z2.label search (successful)
721 nominatim_requests.z2.draw STACK
722 nominatim_requests.z2.type GAUGE
723 nominatim_requests.z3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_requests.z3", @geocoders %>
724 nominatim_requests.z3.label search (no result)
725 nominatim_requests.z3.draw STACK
726 nominatim_requests.z3.type GAUGE
727 nominatim_requests.z4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_requests.z4", @geocoders %>
728 nominatim_requests.z4.label details
729 nominatim_requests.z4.draw STACK
730 nominatim_requests.z4.type GAUGE
731 nominatim_throttled_ips.graph_title Restricted IPs
732 nominatim_throttled_ips.graph_args -l 0
733 nominatim_throttled_ips.graph_vlabel number of IPs
734 nominatim_throttled_ips.graph_category nominatim
735 nominatim_throttled_ips.graph_order bulk block
736 nominatim_throttled_ips.bulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_throttled_ips.bulk", @geocoders %>
737 nominatim_throttled_ips.bulk.label bulk
738 nominatim_throttled_ips.bulk.draw AREA
739 nominatim_throttled_ips.bulk.type GAUGE
740 nominatim_throttled_ips.block.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:nominatim_throttled_ips.block", @geocoders %>
741 nominatim_throttled_ips.block.label blocked
742 nominatim_throttled_ips.block.draw STACK
743 nominatim_throttled_ips.block.type GAUGE