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.external_ipaddress -%>
40 address <%= client.external_ipaddress %>
43 <% if client[:munin][:plugins] -%>
44 <% client[:munin][:plugins].keys.sort.each do |plugin| -%>
45 <% client[:munin][:plugins][plugin].keys.sort.each do |value| -%>
46 <% if client[:munin][:plugins][plugin][value].kind_of?(Hash) -%>
47 <% if client[:munin][:plugins][plugin][value][:graph] -%>
48 <%= plugin %>.<%= value %>.graph <%= client[:munin][:plugins][plugin][value][:graph] %>
50 <% if client[:munin][:plugins][plugin][value][:label] -%>
51 <%= plugin %>.<%= value %>.label <%= client[:munin][:plugins][plugin][value][:label] %>
53 <% if client[:munin][:plugins][plugin][value][:warning] -%>
54 <%= plugin %>.<%= value %>.warning <%= client[:munin][:plugins][plugin][value][:warning] %>
56 <% if client[:munin][:plugins][plugin][value][:critical] -%>
57 <%= plugin %>.<%= value %>.critical <%= client[:munin][:plugins][plugin][value][:critical] %>
60 <%= plugin %>.<%= value %> <%= client[:munin][:plugins][plugin][value] %>
65 <% if client[:munin][:graphs] -%>
66 <% client[:munin][:graphs].keys.sort.each do |graph| -%>
67 <% if client[:munin][:graphs][graph][:title] -%>
68 <%= graph %>.graph_title <%= client[:munin][:graphs][graph][:title] %>
70 <% if client[:munin][:graphs][graph][:vlabel] -%>
71 <%= graph %>.graph_vlabel <%= client[:munin][:graphs][graph][:vlabel] %>
73 <% if client[:munin][:graphs][graph][:category] -%>
74 <%= graph %>.graph_category <%= client[:munin][:graphs][graph][:category] %>
76 <% client[:munin][:graphs][graph][:values].keys.sort.each do |value| -%>
77 <% if client[:munin][:graphs][graph][:values][value][:sum] -%>
78 <%= graph %>.<%= value %>.sum <%= client[:munin][:graphs][graph][:values][value][:sum].join(" ") %>
80 <% if client[:munin][:graphs][graph][:values][value][:label] -%>
81 <%= graph %>.<%= value %>.label <%= client[:munin][:graphs][graph][:values][value][:label] %>
88 # Configure compound graphs for www.openstreetmap.org
91 apache_accesses.graph_title Apache accesses
92 apache_accesses.graph_vlabel accesses / ${graph_period}
93 apache_accesses.graph_category apache
94 apache_accesses.accesses80.sum <%= Chef::Munin.expand "%%.openstreetmap:apache_accesses.accesses80", @frontends %>
95 apache_accesses.accesses80.label port 80
96 apache_volume.graph_title Apache volume
97 apache_volume.graph_vlabel bytes per ${graph_period}
98 apache_volume.graph_category apache
99 apache_volume.volume80.sum <%= Chef::Munin.expand "%%.openstreetmap:apache_volume.volume80", @frontends %>
100 apache_volume.volume80.label port 80
101 if_eth0.graph_title eth0 traffic
102 if_eth0.graph_vlabel bits in (-) / out (+) per ${graph_period}
103 if_eth0.graph_category network
104 if_eth0.graph_order down up
105 if_eth0.down.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth0.down", @frontends %>
106 if_eth0.down.label received
107 if_eth0.down.cdef down,8,*
108 if_eth0.up.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth0.up", @frontends %>
109 if_eth0.up.label sent
110 if_eth0.up.cdef up,8,*
111 if_eth1.graph_title eth1 traffic
112 if_eth1.graph_vlabel bits in (-) / out (+) per ${graph_period}
113 if_eth1.graph_category network
114 if_eth1.graph_order down up
115 if_eth1.down.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth1.down", @frontends %>
116 if_eth1.down.label received
117 if_eth1.down.cdef down,8,*
118 if_eth1.up.sum <%= Chef::Munin.expand "%%.openstreetmap:if_eth1.up", @frontends %>
119 if_eth1.up.label sent
120 if_eth1.up.cdef up,8,*
121 api_calls_www.graph_title Active requests
122 api_calls_www.graph_vlabel Number of requests
123 api_calls_www.graph_category api
124 api_calls_www.graph_order map upload amf history full trkpts web other
125 api_calls_www.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.web", @frontends %>
126 api_calls_www.web.label Web site traffic
127 api_calls_www.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.upload", @frontends %>
128 api_calls_www.upload.label Changeset diff uploads
129 api_calls_www.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.other", @frontends %>
130 api_calls_www.other.label Other API calls
131 api_calls_www.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.amf", @frontends %>
132 api_calls_www.amf.label AMF API calls
133 api_calls_www.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.history", @frontends %>
134 api_calls_www.history.label Element history fetches
135 api_calls_www.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.full", @frontends %>
136 api_calls_www.full.label Full element fetches
137 api_calls_www.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.map", @frontends %>
138 api_calls_www.map.label Map API calls
139 api_calls_www.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_%%%.trkpts", @frontends %>
140 api_calls_www.trkpts.label GPX trackpoints calls
141 api_calls_error.graph_title HTTP errors
142 api_calls_error.graph_vlabel Number of errors per ${graph_period}
143 api_calls_error.graph_category api
144 api_calls_error.graph_order http401 http500 http502 http503 http509
145 api_calls_error.http401.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http401", @frontends %>
146 api_calls_error.http401.label 401 Unauthorized
147 api_calls_error.http500.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http500", @frontends %>
148 api_calls_error.http500.label 500 Internal Server Error
149 api_calls_error.http502.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http502", @frontends %>
150 api_calls_error.http502.label 502 Bad Gateway
151 api_calls_error.http503.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http503", @frontends %>
152 api_calls_error.http503.label 503 Service Unavailable
153 api_calls_error.http509.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_status.http509", @frontends %>
154 api_calls_error.http509.label 509 Bandwidth Limit Exceeded
155 api_calls_num.graph_title Requests processed
156 api_calls_num.graph_vlabel Number of requests per ${graph_period}
157 api_calls_num.graph_category api
158 api_calls_num.graph_order map upload amf history full trkpts web other
159 api_calls_num.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.web", @frontends %>
160 api_calls_num.web.label Web site traffic
161 api_calls_num.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.upload", @frontends %>
162 api_calls_num.upload.label Changeset diff uploads
163 api_calls_num.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.other", @frontends %>
164 api_calls_num.other.label Other API calls
165 api_calls_num.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.amf", @frontends %>
166 api_calls_num.amf.label AMF API calls
167 api_calls_num.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.history", @frontends %>
168 api_calls_num.history.label Element history fetches
169 api_calls_num.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.full", @frontends %>
170 api_calls_num.full.label Full element fetches
171 api_calls_num.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.map", @frontends %>
172 api_calls_num.map.label Map API calls
173 api_calls_num.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_calls_num.trkpts", @frontends %>
174 api_calls_num.trkpts.label GPX trackpoints calls
175 api_waits_www.graph_title Wait times for active requests
176 api_waits_www.graph_vlabel Average time of requests
177 api_waits_www.graph_category api
178 api_waits_www.graph_order map upload amf history full trkpts web other
179 api_waits_www.web.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.web", @frontends %>
180 api_waits_www.web.label Web site traffic
181 api_waits_www.web.cdef web,2,/
182 api_waits_www.upload.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.upload", @frontends %>
183 api_waits_www.upload.label Changeset diff uploads
184 api_waits_www.upload.cdef upload,2,/
185 api_waits_www.other.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.other", @frontends %>
186 api_waits_www.other.label Other API calls
187 api_waits_www.other.cdef other,2,/
188 api_waits_www.amf.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.amf", @frontends %>
189 api_waits_www.amf.label AMF API calls
190 api_waits_www.amf.cdef amf,2,/
191 api_waits_www.history.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.history", @frontends %>
192 api_waits_www.history.label Element history fetches
193 api_waits_www.history.cdef history,2,/
194 api_waits_www.full.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.full", @frontends %>
195 api_waits_www.full.label Full element fetches
196 api_waits_www.full.cdef full,2,/
197 api_waits_www.map.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.map", @frontends %>
198 api_waits_www.map.label Map API calls
199 api_waits_www.map.cdef map,2,/
200 api_waits_www.trkpts.sum <%= Chef::Munin.expand "%%.openstreetmap:api_waits_%%%.trkpts", @frontends %>
201 api_waits_www.trkpts.label GPX trackpoints calls
202 api_waits_www.trkpts.cdef trkpts,2,/
203 memcached_multi_commands.graph_title Commands
204 memcached_multi_commands.graph_vlabel Commands per ${graph_period}
205 memcached_multi_commands.graph_category memcached
206 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
207 memcached_multi_commands.cmd_get.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_get", @backends %>
208 memcached_multi_commands.cmd_get.label Gets
209 memcached_multi_commands.cmd_set.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_set", @backends %>
210 memcached_multi_commands.cmd_set.label Sets
211 memcached_multi_commands.cmd_touch.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.cmd_touch", @backends %>
212 memcached_multi_commands.cmd_touch.label Touches
213 memcached_multi_commands.get_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.get_hits", @backends %>
214 memcached_multi_commands.get_hits.label Get Hits
215 memcached_multi_commands.get_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.get_misses", @backends %>
216 memcached_multi_commands.get_misses.label Get Misses
217 memcached_multi_commands.delete_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.delete_hits", @backends %>
218 memcached_multi_commands.delete_hits.label Delete Hits
219 memcached_multi_commands.delete_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.delete_misses", @backends %>
220 memcached_multi_commands.delete_misses.label Delete Misses
221 memcached_multi_commands.incr_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.incr_hits", @backends %>
222 memcached_multi_commands.incr_hits.label Increment Hits
223 memcached_multi_commands.incr_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.incr_misses", @backends %>
224 memcached_multi_commands.incr_misses.label Increment Misses
225 memcached_multi_commands.decr_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.decr_hits", @backends %>
226 memcached_multi_commands.decr_hits.label Decrement Hits
227 memcached_multi_commands.decr_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.decr_misses", @backends %>
228 memcached_multi_commands.decr_misses.label Decrement Misses
229 memcached_multi_commands.touch_hits.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.touch_hits", @backends %>
230 memcached_multi_commands.touch_hits.label Touch Hits
231 memcached_multi_commands.touch_misses.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_commands.touch_misses", @backends %>
232 memcached_multi_commands.touch_misses.label Touch Misses
233 memcached_multi_conns.graph_title Connections
234 memcached_multi_conns.graph_vlabel Connections per ${graph_period}
235 memcached_multi_conns.graph_category memcached
236 memcached_multi_conns.graph_order max_conns curr_conns avg_conns
237 memcached_multi_conns.curr_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.curr_conns", @backends %>
238 memcached_multi_conns.curr_conns.label Current Connections
239 memcached_multi_conns.max_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.max_conns", @backends %>
240 memcached_multi_conns.max_conns.label Max Connections
241 memcached_multi_conns.avg_conns.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_conns.avg_conns", @backends %>
242 memcached_multi_conns.avg_conns.label Avg Connections
243 memcached_multi_evictions.graph_title Evictions
244 memcached_multi_evictions.graph_vlabel Evictions per ${graph_period}
245 memcached_multi_evictions.graph_category memcached
246 memcached_multi_evictions.evictions.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.evictions", @backends %>
247 memcached_multi_evictions.evictions.label Evictions
248 memcached_multi_evictions.evicted_nonzero.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.evicted_nonzero", @backends %>
249 memcached_multi_evictions.evicted_nonzero.label Evictions prior to Expire
250 memcached_multi_evictions.reclaimed.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_evictions.reclaimed", @backends %>
251 memcached_multi_evictions.reclaimed.label Reclaimed Items
252 memcached_multi_items.graph_title Items
253 memcached_multi_items.graph_vlabel Items in Memcached
254 memcached_multi_items.graph_category memcached
255 memcached_multi_items.graph_order curr_items total_items
256 memcached_multi_items.curr_items.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_items.curr_items", @backends %>
257 memcached_multi_items.curr_items.label Current Items
258 memcached_multi_items.total_items.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_items.total_items", @backends %>
259 memcached_multi_items.total_items.label New Items
260 memcached_multi_memory.graph_title Memory Usage
261 memcached_multi_memory.graph_vlabel Bytes Used
262 memcached_multi_memory.graph_category memcached
263 memcached_multi_memory.graph_order limit_maxbytes bytes
264 memcached_multi_memory.limit_maxbytes.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_memory.limit_maxbytes", @backends %>
265 memcached_multi_memory.limit_maxbytes.label Maximum Bytes Allocated
266 memcached_multi_memory.bytes.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_memory.bytes", @backends %>
267 memcached_multi_memory.bytes.label Current Bytes Used
268 memcached_multi_bytes.graph_title Network Traffic
269 memcached_multi_bytes.graph_args --base 1000
270 memcached_multi_bytes.graph_vlabel bits in (-) / out (+)
271 memcached_multi_bytes.graph_category memcached
272 memcached_multi_bytes.graph_order bytes_read bytes_written
273 memcached_multi_bytes.bytes_read.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_bytes.bytes_read", @backends %>
274 memcached_multi_bytes.bytes_read.label Network Traffic coming in (-)
275 memcached_multi_bytes.bytes_read.cdef bytes_read,8,*
276 memcached_multi_bytes.bytes_read.graph no
277 memcached_multi_bytes.bytes_written.sum <%= Chef::Munin.expand "%%.openstreetmap:memcached_multi_bytes.bytes_written", @backends %>
278 memcached_multi_bytes.bytes_written.negative bytes_read
279 memcached_multi_bytes.bytes_written.label Traffic in (-) / out (+)
280 memcached_multi_bytes.bytes_written.cdef bytes_written,8,*
282 # Configure compound graphs for tile.openstreetmap.org
285 network_in.graph_title Inbound network traffic
286 network_in.graph_vlabel bits in per ${graph_period}
287 network_in.graph_category network
288 network_in.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:if_%%interface%%.down", @tilecaches %>
289 network_in.graph_total total
290 <% @tilecaches.each do |tc| -%>
291 network_in.<%= tc[:name] %>.label <%= tc[:name] %>
292 network_in.<%= tc[:name] %>.cdef <%= tc[:name] %>,8,*
293 network_in.<%= tc[:name] %>.draw AREASTACK
295 network_out.graph_title Outbound network traffic
296 network_out.graph_vlabel bits out per ${graph_period}
297 network_out.graph_category network
298 network_out.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:if_%%interface%%.up", @tilecaches %>
299 network_out.graph_total total
300 <% @tilecaches.each do |tc| -%>
301 network_out.<%= tc[:name] %>.label <%= tc[:name] %>
302 network_out.<%= tc[:name] %>.cdef <%= tc[:name] %>,8,*
303 network_out.<%= tc[:name] %>.draw AREASTACK
305 squid_delay_pools.graph_title IPs being delayed
306 squid_delay_pools.graph_args --base 1000 -l 0
307 squid_delay_pools.graph_vlabel IPs
308 squid_delay_pools.graph_order squid_delay1
309 squid_delay_pools.graph_category squid
310 squid_delay_pools.squid_delay1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_delay_pools.squid_delay1", @tilecaches %>
311 squid_delay_pools.squid_delay1.label IPs
312 squid_delay_pools.squid_delay1.min 0
313 squid_delay_pools.squid_delay1.draw AREA
314 squid_requests.graph_title Squid client requests
315 squid_requests.graph_args --base 1000 -l 0
316 squid_requests.graph_vlabel requests / ${graph_period}
317 squid_requests.graph_order hits errors requests
318 squid_requests.graph_total total
319 squid_requests.graph_category squid
320 squid_requests.hits.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_requests.hits", @tilecaches %>
321 squid_requests.hits.label hits
322 squid_requests.hits.draw AREA
323 squid_requests.errors.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_requests.errors", @tilecaches %>
324 squid_requests.errors.label errors
325 squid_requests.errors.draw STACK
326 squid_requests.requests.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_requests.requests", @tilecaches %>
327 squid_requests.requests.label misses
328 squid_requests.requests.draw STACK
329 squid_traffic.graph_title Squid traffic status
330 squid_traffic.graph_args --base 1000
331 squid_traffic.graph_vlabel bits per ${graph_period}
332 squid_traffic.graph_order kbytes_in kbytes_out hit_kbytes_out
333 squid_traffic.graph_category squid
334 squid_traffic.kbytes_in.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.kbytes_in", @tilecaches %>
335 squid_traffic.kbytes_in.label received
336 squid_traffic.kbytes_in.cdef kbytes_in,8096,*
337 squid_traffic.kbytes_out.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.kbytes_out", @tilecaches %>
338 squid_traffic.kbytes_out.label sent
339 squid_traffic.kbytes_out.cdef kbytes_out,8096,*
340 squid_traffic.hit_kbytes_out.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:squid_traffic.hit_kbytes_out", @tilecaches %>
341 squid_traffic.hit_kbytes_out.label from cache
342 squid_traffic.hit_kbytes_out.cdef hit_kbytes_out,8096,*
343 squid_times_http.graph_title Squid Http Service Times
344 squid_times_http.graph_category squid
345 squid_times_http.graph_args --lower-limit 0
346 squid_times_http.graph_vlabel median reponse times (s)
347 squid_times_http.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_http", @tilecaches %>
348 <% @tilecaches.each do |tc| -%>
349 squid_times_http.<%= tc[:name] %>.label <%= tc[:name] %>
351 squid_times_cmis.graph_title Squid Cache Miss Service Times
352 squid_times_cmis.graph_category squid
353 squid_times_cmis.graph_args --lower-limit 0
354 squid_times_cmis.graph_vlabel median reponse times (s)
355 squid_times_cmis.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_cmis", @tilecaches %>
356 <% @tilecaches.each do |tc| -%>
357 squid_times_cmis.<%= tc[:name] %>.label <%= tc[:name] %>
359 squid_times_chits.graph_title Squid Cache Hit Service Times
360 squid_times_chits.graph_category squid
361 squid_times_chits.graph_args --lower-limit 0
362 squid_times_chits.graph_vlabel median reponse times (s)
363 squid_times_chits.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_chits", @tilecaches %>
364 <% @tilecaches.each do |tc| -%>
365 squid_times_chits.<%= tc[:name] %>.label <%= tc[:name] %>
367 squid_times_nhits.graph_title Squid Cache Near Hit Service Times
368 squid_times_nhits.graph_category squid
369 squid_times_nhits.graph_args --lower-limit 0
370 squid_times_nhits.graph_vlabel median reponse times (s)
371 squid_times_nhits.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_nhits", @tilecaches %>
372 <% @tilecaches.each do |tc| -%>
373 squid_times_nhits.<%= tc[:name] %>.label <%= tc[:name] %>
375 squid_times_nmr.graph_title Squid Cache Not Modified Service Times
376 squid_times_nmr.graph_category squid
377 squid_times_nmr.graph_args --lower-limit 0
378 squid_times_nmr.graph_vlabel median reponse times (s)
379 squid_times_nmr.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_nmr", @tilecaches %>
380 <% @tilecaches.each do |tc| -%>
381 squid_times_nmr.<%= tc[:name] %>.label <%= tc[:name] %>
383 squid_times_dnsl.graph_title Squid Cache DNS Lookup Service Times
384 squid_times_dnsl.graph_category squid
385 squid_times_dnsl.graph_args --lower-limit 0
386 squid_times_dnsl.graph_vlabel median reponse times (s)
387 squid_times_dnsl.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:squid_times.mean_dnsl", @tilecaches %>
388 <% @tilecaches.each do |tc| -%>
389 squid_times_dnsl.<%= tc[:name] %>.label <%= tc[:name] %>
392 # Configure compound graphs for render.openstreetmap.org
393 [render.openstreetmap]
395 apache_accesses.graph_title Apache accesses
396 apache_accesses.graph_vlabel accesses / ${graph_period}
397 apache_accesses.graph_category apache
398 apache_accesses.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:apache_accesses.accesses80", @renderers %>
399 apache_accesses.graph_total total
400 <% @renderers.each do |rs| -%>
401 apache_accesses.<%= rs[:name] %>.label <%= rs[:name] %>
402 apache_accesses.<%= rs[:name] %>.draw AREASTACK
404 apache_volume.graph_title Apache volume
405 apache_volume.graph_vlabel bytes per ${graph_period}
406 apache_volume.graph_category apache
407 apache_volume.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:apache_volume.volume80", @renderers %>
408 apache_volume.graph_total total
409 <% @renderers.each do |rs| -%>
410 apache_volume.<%= rs[:name] %>.label <%= rs[:name] %>
411 apache_volume.<%= rs[:name] %>.draw AREASTACK
413 network_in.graph_title Inbound network traffic
414 network_in.graph_vlabel bits in per ${graph_period}
415 network_in.graph_category network
416 network_in.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:if_%%interface%%.down", @renderers %>
417 network_in.graph_total total
418 <% @renderers.each do |rs| -%>
419 network_in.<%= rs[:name] %>.label <%= rs[:name] %>
420 network_in.<%= rs[:name] %>.cdef <%= rs[:name] %>,8,*
421 network_in.<%= rs[:name] %>.draw AREASTACK
423 network_out.graph_title Outbound network traffic
424 network_out.graph_vlabel bits out per ${graph_period}
425 network_out.graph_category network
426 network_out.graph_order <%= Chef::Munin.expand "%%name%%=%%name%%.openstreetmap:if_%%interface%%.up", @renderers %>
427 network_out.graph_total total
428 <% @renderers.each do |rs| -%>
429 network_out.<%= rs[:name] %>.label <%= rs[:name] %>
430 network_out.<%= rs[:name] %>.cdef <%= rs[:name] %>,8,*
431 network_out.<%= rs[:name] %>.draw AREASTACK
433 mod_tile_fresh.graph_title freshness of served tiles
434 mod_tile_fresh.graph_args --base 1000 -l 0
435 mod_tile_fresh.graph_vlabel tiles per ${graph_period}
436 mod_tile_fresh.graph_order fresh freshrender old oldrender outdated outdatedrender
437 mod_tile_fresh.graph_category mod_tile
438 mod_tile_fresh.fresh.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.fresh", @renderers %>
439 mod_tile_fresh.fresh.label Fresh from disk
440 mod_tile_fresh.fresh.draw AREA
441 mod_tile_fresh.freshrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.freshrender", @renderers %>
442 mod_tile_fresh.freshrender.label Freshly rendered
443 mod_tile_fresh.freshrender.draw STACK
444 mod_tile_fresh.old.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.old", @renderers %>
445 mod_tile_fresh.old.label Old from disk
446 mod_tile_fresh.old.draw STACK
447 mod_tile_fresh.oldrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.oldrender", @renderers %>
448 mod_tile_fresh.oldrender.label Old tile, attempted render
449 mod_tile_fresh.oldrender.draw STACK
450 mod_tile_fresh.outdated.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.outdated", @renderers %>
451 mod_tile_fresh.outdated.label Outdated from disk
452 mod_tile_fresh.outdated.draw STACK
453 mod_tile_fresh.outdatedrender.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_fresh.outdatedrender", @renderers %>
454 mod_tile_fresh.outdatedrender.label Outdated tile, attempted render
455 mod_tile_fresh.outdatedrender.draw STACK
456 mod_tile_response.graph_title mod_tile HTTP response codes
457 mod_tile_response.graph_args --base 1000 -l 0
458 mod_tile_response.graph_vlabel responses per ${graph_period}
459 mod_tile_response.graph_order response200 response304 response404 response500
460 mod_tile_response.graph_category mod_tile
461 mod_tile_response.response200.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response200", @renderers %>
462 mod_tile_response.response200.label 200 OK
463 mod_tile_response.response200.draw AREA
464 mod_tile_response.response304.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response304", @renderers %>
465 mod_tile_response.response304.label 304 Not Modified
466 mod_tile_response.response304.draw STACK
467 mod_tile_response.response404.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response404", @renderers %>
468 mod_tile_response.response404.label 404 Not Found
469 mod_tile_response.response404.draw STACK
470 mod_tile_response.response500.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_response.response500", @renderers %>
471 mod_tile_response.response500.label 500 Internal Error
472 mod_tile_response.response500.draw STACK
473 mod_tile_zoom.graph_title mod_tile responses by zoom layer
474 mod_tile_zoom.graph_args --base 1000 -l 0
475 mod_tile_zoom.graph_vlabel responses per ${graph_period}
476 mod_tile_zoom.graph_order z1 z2 z3 z4 z5 z6
477 mod_tile_zoom.graph_category mod_tile
478 mod_tile_zoom.z1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z1", @renderers %>
479 mod_tile_zoom.z1.label z1-8
480 mod_tile_zoom.z1.draw AREA
481 mod_tile_zoom.z2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z2", @renderers %>
482 mod_tile_zoom.z2.label z9-12
483 mod_tile_zoom.z2.draw STACK
484 mod_tile_zoom.z3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z3", @renderers %>
485 mod_tile_zoom.z3.label z13-14
486 mod_tile_zoom.z3.draw STACK
487 mod_tile_zoom.z4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z4", @renderers %>
488 mod_tile_zoom.z4.label z15-16
489 mod_tile_zoom.z4.draw STACK
490 mod_tile_zoom.z5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z5", @renderers %>
491 mod_tile_zoom.z5.label z17-18
492 mod_tile_zoom.z5.draw STACK
493 mod_tile_zoom.z6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:mod_tile_zoom.z6", @renderers %>
494 mod_tile_zoom.z6.label z19-20
495 mod_tile_zoom.z6.draw STACK
496 renderd_queue.graph_title Renderd queue length
497 renderd_queue.graph_args --base 1000 -l 0
498 renderd_queue.graph_vlabel metatiles
499 renderd_queue.graph_order reqPrio req reqLow dirty reqBulk
500 renderd_queue.graph_category renderd
501 renderd_queue.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqPrio", @renderers %>
502 renderd_queue.reqPrio.label Priority request Queue
503 renderd_queue.reqPrio.type GAUGE
504 renderd_queue.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.req", @renderers %>
505 renderd_queue.req.label Request Queue
506 renderd_queue.req.type GAUGE
507 renderd_queue.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqLow", @renderers %>
508 renderd_queue.reqLow.label Low priority request Queue
509 renderd_queue.reqLow.type GAUGE
510 renderd_queue.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.dirty", @renderers %>
511 renderd_queue.dirty.label Dirty Queue
512 renderd_queue.dirty.type GAUGE
513 renderd_queue.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue.reqBulk", @renderers %>
514 renderd_queue.reqBulk.label Bulk request Queue
515 renderd_queue.reqBulk.type GAUGE
516 renderd_processed.graph_title Renderd throughput
517 renderd_processed.graph_args --base 1000 -l 0
518 renderd_processed.graph_vlabel Metatiles per ${graph_period}
519 renderd_processed.graph_order req reqLow reqPrio dirty reqBulk dropped
520 renderd_processed.graph_category renderd
521 renderd_processed.graph_info Displays the number of metatiles being rendered by renderd per ${graph_period}
522 renderd_processed.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.req", @renderers %>
523 renderd_processed.req.label Request Queue
524 renderd_processed.req.draw AREA
525 renderd_processed.req.info Throughput of Metatiles submitted for on the fly rendering
526 renderd_processed.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqLow", @renderers %>
527 renderd_processed.reqLow.label Low priority request Queue
528 renderd_processed.reqLow.draw STACK
529 renderd_processed.reqLow.info Throughput of Metatiles submitted low priority for on the fly rendering
530 renderd_processed.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqPrio", @renderers %>
531 renderd_processed.reqPrio.label Priority request Queue
532 renderd_processed.reqPrio.draw STACK
533 renderd_processed.reqPrio.info Throughput of Metatiles submitted high priority for on the fly rendering
534 renderd_processed.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.dirty", @renderers %>
535 renderd_processed.dirty.label Dirty Queue
536 renderd_processed.dirty.draw STACK
537 renderd_processed.dirty.info Throughput of dirty Metatiles submitted for re-render
538 renderd_processed.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.reqBulk", @renderers %>
539 renderd_processed.reqBulk.label Bulk request Queue
540 renderd_processed.reqBulk.draw STACK
541 renderd_processed.reqBulk.info Throughput of Metatiles submitted with background priority
542 renderd_processed.dropped.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_processed.dropped", @renderers %>
543 renderd_processed.dropped.label Dropped (x20)
544 renderd_processed.dropped.draw LINE2
545 renderd_processed.dropped.info Number of Tiles dropped due to queue overload (x20)
546 renderd_processed.dropped.cdef dropped,20,/
547 renderd_zoom.graph_title Renderd throughput by zoom
548 renderd_zoom.graph_args --base 1000 -l 0
549 renderd_zoom.graph_vlabel Metatiles per ${graph_period}
550 renderd_zoom.graph_order z1 z2 z3 z4 z5 z6
551 renderd_zoom.graph_category renderd
552 renderd_zoom.graph_info Displays the number of metatiles being rendered by renderd per ${graph_period}
553 renderd_zoom.z1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z1", @renderers %>
554 renderd_zoom.z1.label zoom z0 - z8
555 renderd_zoom.z1.draw AREA
556 renderd_zoom.z1.info Throughput of Metatiles for z0 - z8
557 renderd_zoom.z2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z2", @renderers %>
558 renderd_zoom.z2.label zoom z9 - z12
559 renderd_zoom.z2.draw STACK
560 renderd_zoom.z2.info Throughput of Metatiles for z9 - z12
561 renderd_zoom.z3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z3", @renderers %>
562 renderd_zoom.z3.label zoom z13 - z14
563 renderd_zoom.z3.draw STACK
564 renderd_zoom.z3.info Throughput of Metatiles for z13 - z14
565 renderd_zoom.z4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z4", @renderers %>
566 renderd_zoom.z4.label zoom z15 - z16
567 renderd_zoom.z4.draw STACK
568 renderd_zoom.z4.info Throughput of Metatiles for z15 - z16
569 renderd_zoom.z5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z5", @renderers %>
570 renderd_zoom.z5.label zoom z17 - z18
571 renderd_zoom.z5.draw STACK
572 renderd_zoom.z5.info Throughput of Metatiles for z17 - z18
573 renderd_zoom.z6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom.z6", @renderers %>
574 renderd_zoom.z6.label zoom z19 - z20
575 renderd_zoom.z6.draw STACK
576 renderd_zoom.z6.info Throughput of Metatiles for z19 - z20
577 renderd_queue_time.graph_title Renderd time spent by queue
578 renderd_queue_time.graph_args --base 1000 -l 0
579 renderd_queue_time.graph_vlabel metatiles
580 renderd_queue_time.graph_order reqPrio req reqLow dirty reqBulk
581 renderd_queue_time.graph_category renderd
582 renderd_queue_time.reqPrio.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqPrio", @renderers %>
583 renderd_queue_time.reqPrio.label Priority request queue
584 renderd_queue_time.reqPrio.cdef reqPrio,1000,/
585 renderd_queue_time.reqPrio.draw AREA
586 renderd_queue_time.reqPrio.info Time for priority request queue
587 renderd_queue_time.req.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.req", @renderers %>
588 renderd_queue_time.req.label Request queue
589 renderd_queue_time.req.cdef req,1000,/
590 renderd_queue_time.req.draw STACK
591 renderd_queue_time.req.info Time for Request queue
592 renderd_queue_time.reqLow.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqLow", @renderers %>
593 renderd_queue_time.reqLow.label Low priority request queue
594 renderd_queue_time.reqLow.cdef reqLow,1000,/
595 renderd_queue_time.reqLow.draw STACK
596 renderd_queue_time.reqLow.info Time for low priority request queue
597 renderd_queue_time.dirty.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.dirty", @renderers %>
598 renderd_queue_time.dirty.label Dirty queue
599 renderd_queue_time.dirty.cdef dirty,1000,/
600 renderd_queue_time.dirty.draw STACK
601 renderd_queue_time.dirty.info Time for dirty queue
602 renderd_queue_time.reqBulk.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_queue_time.reqBulk", @renderers %>
603 renderd_queue_time.reqBulk.label Bulk queue
604 renderd_queue_time.reqBulk.cdef reqBulk,1000,/
605 renderd_queue_time.reqBulk.draw STACK
606 renderd_queue_time.reqBulk.info Time for bulk queue
607 renderd_zoom_time.graph_title Renderd time spent by zoom
608 renderd_zoom_time.graph_args --base 1000 -l 0
609 renderd_zoom_time.graph_vlabel time spent per ${graph_period}
610 renderd_zoom_time.graph_order zoomtime1 zoomtime2 zoomtime3 zoomtime4 zoomtime5 zoomtime6
611 renderd_zoom_time.graph_category renderd
612 renderd_zoom_time.graph_info Displays the amount of time renderd has spent rendering tiles of a given zoom per ${graph_period}
613 renderd_zoom_time.zoomtime1.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime1", @renderers %>
614 renderd_zoom_time.zoomtime1.label zoom z0 - z8
615 renderd_zoom_time.zoomtime1.cdef zoomtime1,1000,/
616 renderd_zoom_time.zoomtime1.draw AREA
617 renderd_zoom_time.zoomtime1.info Time for Metatiles z0 - z8
618 renderd_zoom_time.zoomtime2.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime2", @renderers %>
619 renderd_zoom_time.zoomtime2.label zoom z9 - z12
620 renderd_zoom_time.zoomtime2.cdef zoomtime2,1000,/
621 renderd_zoom_time.zoomtime2.draw STACK
622 renderd_zoom_time.zoomtime2.info Time for Metatiles for z9 - z12
623 renderd_zoom_time.zoomtime3.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime3", @renderers %>
624 renderd_zoom_time.zoomtime3.label zoom z13 - z14
625 renderd_zoom_time.zoomtime3.cdef zoomtime3,1000,/
626 renderd_zoom_time.zoomtime3.draw STACK
627 renderd_zoom_time.zoomtime3.info Time for Metatiles for z13 - z14
628 renderd_zoom_time.zoomtime4.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime4", @renderers %>
629 renderd_zoom_time.zoomtime4.label zoom z15 - z16
630 renderd_zoom_time.zoomtime4.cdef zoomtime4,1000,/
631 renderd_zoom_time.zoomtime4.draw STACK
632 renderd_zoom_time.zoomtime4.info Time for Metatiles for z15 - z16
633 renderd_zoom_time.zoomtime5.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime5", @renderers %>
634 renderd_zoom_time.zoomtime5.label zoom z17 - z18
635 renderd_zoom_time.zoomtime5.cdef zoomtime5,1000,/
636 renderd_zoom_time.zoomtime5.draw STACK
637 renderd_zoom_time.zoomtime5.info Time for Metatiles for z17 - z18
638 renderd_zoom_time.zoomtime6.sum <%= Chef::Munin.expand "%%name%%.openstreetmap:renderd_zoom_time.zoomtime6", @renderers %>
639 renderd_zoom_time.zoomtime6.label zoom z19 - z20
640 renderd_zoom_time.zoomtime6.cdef zoomtime6,1000,/
641 renderd_zoom_time.zoomtime6.draw STACK
642 renderd_zoom_time.zoomtime6.info Time for Metatiles for z19 - z20