zabbix-ruby-client 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 00e57942aaa4397a8def9683e4632690bd7bf284
4
+ data.tar.gz: bf7d75cdb8d46a1830e5a2fdb3f080d3861ff2fd
5
+ SHA512:
6
+ metadata.gz: 2975daee00edef2495a75abe8b258011e71aafca84ccb77e3a0a2e825a9a1736c92d298f232a1ef0bbbd6540f2a85008cebfde646f16f5a7d780d9d3850fc373
7
+ data.tar.gz: 837b37497e0f439f5d1e701307cc8770327c7583a4d6a3e1376a3644b96d360d75b07651f8689f61a6f182b49018910f0bf164e1fc15ca25d2e3b112e2aec2d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Zabbbix Ruby Client Changelog
2
2
  -----------------------------
3
3
 
4
+ ### v0.0.6 - 2013-09-25
5
+
6
+ * added a discover method in plugin for pushed discoveries on network interfaces
7
+ * change memory reports to Bytes rather than KBytes
8
+
4
9
  ### v0.0.5 - 2013-09-23
5
10
 
6
11
  * fix generated gemfile
data/README.md CHANGED
@@ -41,11 +41,11 @@ And when ready just install a cron task according to your environment
41
41
 
42
42
  There are a set of standart plugins included in the package, aimed at linux systems.
43
43
 
44
- * cpu (requires mpstat, apt-get install sysstat)
45
- * memory (requires iostat, apt-get install sysstat)
46
- * disk (requires iostat, apt-get install sysstat)
47
- * network (requires netstat, apt-get install netstat)
48
- * apache (depends on mod_status with status_extended on)
44
+ * cpu (uses /proc/stat) [cpu_tpl](master/zabbix-templates/cpu_tpl.xml)
45
+ * memory (requires iostat, apt-get install sysstat) [memory_tpl](master/zabbix-templates/memory_tpl.xml)
46
+ * disk (requires iostat, apt-get install sysstat) (missing tpl)
47
+ * network (requires netstat, apt-get install netstat) [network_tpl](master/zabbix-templates/network_tpl.xml)
48
+ * apache (depends on mod_status with status_extended on) [apache_tpl](master/zabbix-templates/apache_tpl.xml)
49
49
 
50
50
  You can add extra plugin directories in the configuration file.
51
51
 
@@ -19,14 +19,12 @@ class ZabbixRubyClient
19
19
  if @config["plugindirs"]
20
20
  @plugindirs = @plugindirs + @config["plugindirs"]
21
21
  end
22
+ @discover = {}
23
+ @data = []
22
24
  Plugins.load_dirs @plugindirs
23
25
  logger.debug @config.inspect
24
26
  end
25
27
 
26
- def data
27
- @data ||= []
28
- end
29
-
30
28
  def datafile
31
29
  now = Time.now
32
30
  @datafile ||= if @config['keepdata']
@@ -43,7 +41,12 @@ class ZabbixRubyClient
43
41
  Plugins.load(plugin) || logger.error( "Plugin #{plugin} not found.")
44
42
  if Plugins.loaded[plugin]
45
43
  begin
46
- @data = data + Plugins.loaded[plugin].send(:collect, @config['host'], args)
44
+ @data = @data + Plugins.loaded[plugin].send(:collect, @config['host'], *args)
45
+ if Plugins.loaded[plugin].respond_to?(:discover)
46
+ key, value = Plugins.loaded[plugin].send(:discover, *args)
47
+ @discover[key] ||= []
48
+ @discover[key] << [ value ]
49
+ end
47
50
  rescue Exception => e
48
51
  logger.fatal "Oops"
49
52
  logger.fatal e.message
@@ -58,20 +61,29 @@ class ZabbixRubyClient
58
61
  end
59
62
 
60
63
  def show
61
- data.each do |line|
64
+ merge_discover
65
+ @data.each do |line|
62
66
  puts line
63
67
  end
64
68
  end
65
69
 
66
70
  def store
67
71
  File.open(datafile, "w") do |f|
68
- data.each do |d|
72
+ @data.each do |d|
69
73
  f.puts d
70
74
  end
71
75
  end
72
76
  end
73
77
 
78
+ def merge_discover
79
+ @data = @discover.reduce([]) do |a,(k,v)|
80
+ a << "#{@config['host']} #{k} { \"data\": [ #{v.join(', ')} ] }"
81
+ a
82
+ end + @data
83
+ end
84
+
74
85
  def upload
86
+ merge_discover
75
87
  store
76
88
  begin
77
89
  res = `#{@config['zabbix']['sender']} -z #{@config['zabbix']['host']} -i #{datafile}`
@@ -1,3 +1,5 @@
1
+ # for more info check http://www.linuxhowtos.org/System/procstat.htm
2
+
1
3
  class ZabbixRubyClient
2
4
  module Plugins
3
5
  module Cpu
@@ -5,13 +7,16 @@ class ZabbixRubyClient
5
7
 
6
8
  def collect(*args)
7
9
  host = args[0]
8
- cpuinfo = `mpstat | grep " all "`
10
+ #cpuinfo = `mpstat | grep " all "`
11
+ cpuinfo = `cat /proc/stat | grep "^cpu"`
9
12
  if $?.to_i == 0
10
- _, _, _, user, nice, sys, wait, irq, soft, steal, guest, idle = cpuinfo.split(/\s+/)
13
+ _, user, nice, sys, idle, wait, irq, soft, guest, steal = cpuinfo.split(/\s+/).map(&:to_i)
11
14
  else
12
- logger.warn "Please install sysstat."
15
+ logger.warn "Oh you don't have a /proc ?"
13
16
  return []
14
17
  end
18
+ used = user + nice + sys + wait + irq + soft + steal + guest
19
+ total = used + idle
15
20
  back = []
16
21
  back << "#{host} cpu[user] #{user}"
17
22
  back << "#{host} cpu[nice] #{nice}"
@@ -22,6 +27,8 @@ class ZabbixRubyClient
22
27
  back << "#{host} cpu[steal] #{steal}"
23
28
  back << "#{host} cpu[guest] #{guest}"
24
29
  back << "#{host} cpu[idle] #{idle}"
30
+ back << "#{host} cpu[used] #{used}"
31
+ back << "#{host} cpu[total] #{total}"
25
32
  return back
26
33
 
27
34
  end
@@ -28,7 +28,12 @@ class ZabbixRubyClient
28
28
  back << "#{host} disk[#{dev},service_time] #{svctm}"
29
29
  back << "#{host} disk[#{dev},percent_util] #{util}"
30
30
  return back
31
+ end
31
32
 
33
+ def discover(*args)
34
+ device = args[0]
35
+ mount = args[1]
36
+ [ "disk.dev.discovery", "{\"{#DISK_DEVICE}\": \"#{device}\", \"{#DISK_MOUNT}\": \"#{mount}\"}" ]
32
37
  end
33
38
 
34
39
  end
@@ -29,7 +29,7 @@ class ZabbixRubyClient
29
29
  def splitinfo(info)
30
30
  info.split(/\n/).map(&:strip).reduce({}) do |a,line|
31
31
  kb, _, label1, label2 = line.split(" ")
32
- a[label1+label2] = kb
32
+ a[label1+label2] = kb.to_i * 1000
33
33
  a
34
34
  end
35
35
  end
@@ -8,25 +8,31 @@ class ZabbixRubyClient
8
8
  interface = args[1]
9
9
  netinfo = `netstat -i | grep "^#{interface} "`
10
10
  if $?.to_i == 0
11
- _, mtu, rx_ok, rx_err, rx_drop, rx_over, tx_ok, tx_err, tx_drop, tx_over, flags = netinfo.split(/\s+/)
11
+ _, mtu, met, rx_ok, rx_err, rx_drop, rx_over, tx_ok, tx_err, tx_drop, tx_over, flags = netinfo.split(/\s+/)
12
12
  else
13
13
  logger.warn "Please install netstat."
14
14
  return []
15
15
  end
16
16
  back = []
17
- back << "#{host} net[#{interface},mtu] #{mtu}"
18
- back << "#{host} net[#{interface},rx_ok] #{rx_ok}"
19
- back << "#{host} net[#{interface},rx_err] #{rx_err}"
20
- back << "#{host} net[#{interface},rx_drop] #{rx_drop}"
21
- back << "#{host} net[#{interface},rx_over] #{rx_over}"
22
- back << "#{host} net[#{interface},tx_ok] #{tx_ok}"
23
- back << "#{host} net[#{interface},tx_err] #{tx_err}"
24
- back << "#{host} net[#{interface},tx_drop] #{tx_drop}"
25
- back << "#{host} net[#{interface},tx_over] #{tx_over}"
17
+ back << "#{host} net.mtu[#{interface}] #{mtu}"
18
+ back << "#{host} net.met[#{interface}] #{met}"
19
+ back << "#{host} net.rx_ok[#{interface}] #{rx_ok}"
20
+ back << "#{host} net.rx_err[#{interface}] #{rx_err}"
21
+ back << "#{host} net.rx_drop[#{interface}] #{rx_drop}"
22
+ back << "#{host} net.rx_over[#{interface}] #{rx_over}"
23
+ back << "#{host} net.tx_ok[#{interface}] #{tx_ok}"
24
+ back << "#{host} net.tx_err[#{interface}] #{tx_err}"
25
+ back << "#{host} net.tx_drop[#{interface}] #{tx_drop}"
26
+ back << "#{host} net.tx_over[#{interface}] #{tx_over}"
26
27
  return back
27
28
 
28
29
  end
29
30
 
31
+ def discover(*args)
32
+ interface = args[0]
33
+ [ "net.if.discovery", "{\"{#NET_IF}\": \"#{interface}\"}" ]
34
+ end
35
+
30
36
  end
31
37
  end
32
38
  end
@@ -1,3 +1,3 @@
1
1
  class ZabbixRubyClient
2
- VERSION ||= "0.0.5"
2
+ VERSION ||= "0.0.6"
3
3
  end
@@ -16,6 +16,8 @@ plugins:
16
16
  - name: network
17
17
  args: eth0
18
18
  - name: disk
19
- args: sda1
19
+ args:
20
+ - sda1
21
+ - /
20
22
  - name: network
21
- args: eth0
23
+ args: eth1
@@ -0,0 +1,1143 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <zabbix_export>
3
+ <version>2.0</version>
4
+ <date>2013-09-23T07:29:18Z</date>
5
+ <groups>
6
+ <group>
7
+ <name>Templates</name>
8
+ </group>
9
+ <group>
10
+ <name>web apache</name>
11
+ </group>
12
+ </groups>
13
+ <templates>
14
+ <template>
15
+ <template>Apache Stats</template>
16
+ <name>Apache (zrc)</name>
17
+ <groups>
18
+ <group>
19
+ <name>Templates</name>
20
+ </group>
21
+ <group>
22
+ <name>web apache</name>
23
+ </group>
24
+ </groups>
25
+ <applications>
26
+ <application>
27
+ <name>APACHE</name>
28
+ </application>
29
+ </applications>
30
+ <items>
31
+ <item>
32
+ <name>Busy Worker</name>
33
+ <type>2</type>
34
+ <snmp_community/>
35
+ <multiplier>0</multiplier>
36
+ <snmp_oid/>
37
+ <key>apache[BusyWorkers]</key>
38
+ <delay>0</delay>
39
+ <history>7</history>
40
+ <trends>365</trends>
41
+ <status>0</status>
42
+ <value_type>3</value_type>
43
+ <allowed_hosts>mb-sandbox</allowed_hosts>
44
+ <units/>
45
+ <delta>0</delta>
46
+ <snmpv3_securityname/>
47
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
48
+ <snmpv3_authpassphrase/>
49
+ <snmpv3_privpassphrase/>
50
+ <formula>1</formula>
51
+ <delay_flex/>
52
+ <params/>
53
+ <ipmi_sensor/>
54
+ <data_type>0</data_type>
55
+ <authtype>0</authtype>
56
+ <username/>
57
+ <password/>
58
+ <publickey/>
59
+ <privatekey/>
60
+ <port/>
61
+ <description/>
62
+ <inventory_link>0</inventory_link>
63
+ <applications>
64
+ <application>
65
+ <name>APACHE</name>
66
+ </application>
67
+ </applications>
68
+ <valuemap/>
69
+ </item>
70
+ <item>
71
+ <name>Bytes / Request</name>
72
+ <type>2</type>
73
+ <snmp_community/>
74
+ <multiplier>0</multiplier>
75
+ <snmp_oid/>
76
+ <key>apache[BytesPerReq]</key>
77
+ <delay>0</delay>
78
+ <history>7</history>
79
+ <trends>365</trends>
80
+ <status>0</status>
81
+ <value_type>0</value_type>
82
+ <allowed_hosts>mb-sandbox</allowed_hosts>
83
+ <units>B</units>
84
+ <delta>0</delta>
85
+ <snmpv3_securityname/>
86
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
87
+ <snmpv3_authpassphrase/>
88
+ <snmpv3_privpassphrase/>
89
+ <formula>1</formula>
90
+ <delay_flex/>
91
+ <params/>
92
+ <ipmi_sensor/>
93
+ <data_type>0</data_type>
94
+ <authtype>0</authtype>
95
+ <username/>
96
+ <password/>
97
+ <publickey/>
98
+ <privatekey/>
99
+ <port/>
100
+ <description/>
101
+ <inventory_link>0</inventory_link>
102
+ <applications>
103
+ <application>
104
+ <name>APACHE</name>
105
+ </application>
106
+ </applications>
107
+ <valuemap/>
108
+ </item>
109
+ <item>
110
+ <name>Bytes / Seconds</name>
111
+ <type>2</type>
112
+ <snmp_community/>
113
+ <multiplier>0</multiplier>
114
+ <snmp_oid/>
115
+ <key>apache[BytesPerSec]</key>
116
+ <delay>0</delay>
117
+ <history>7</history>
118
+ <trends>365</trends>
119
+ <status>0</status>
120
+ <value_type>0</value_type>
121
+ <allowed_hosts>mb-sandbox</allowed_hosts>
122
+ <units>B/s</units>
123
+ <delta>0</delta>
124
+ <snmpv3_securityname/>
125
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
126
+ <snmpv3_authpassphrase/>
127
+ <snmpv3_privpassphrase/>
128
+ <formula>1</formula>
129
+ <delay_flex/>
130
+ <params/>
131
+ <ipmi_sensor/>
132
+ <data_type>0</data_type>
133
+ <authtype>0</authtype>
134
+ <username/>
135
+ <password/>
136
+ <publickey/>
137
+ <privatekey/>
138
+ <port/>
139
+ <description/>
140
+ <inventory_link>0</inventory_link>
141
+ <applications>
142
+ <application>
143
+ <name>APACHE</name>
144
+ </application>
145
+ </applications>
146
+ <valuemap/>
147
+ </item>
148
+ <item>
149
+ <name>Closing Connection.</name>
150
+ <type>2</type>
151
+ <snmp_community/>
152
+ <multiplier>0</multiplier>
153
+ <snmp_oid/>
154
+ <key>apache[c_closing]</key>
155
+ <delay>0</delay>
156
+ <history>7</history>
157
+ <trends>365</trends>
158
+ <status>0</status>
159
+ <value_type>3</value_type>
160
+ <allowed_hosts>mb-sandbox</allowed_hosts>
161
+ <units/>
162
+ <delta>0</delta>
163
+ <snmpv3_securityname/>
164
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
165
+ <snmpv3_authpassphrase/>
166
+ <snmpv3_privpassphrase/>
167
+ <formula>1</formula>
168
+ <delay_flex/>
169
+ <params/>
170
+ <ipmi_sensor/>
171
+ <data_type>0</data_type>
172
+ <authtype>0</authtype>
173
+ <username/>
174
+ <password/>
175
+ <publickey/>
176
+ <privatekey/>
177
+ <port/>
178
+ <description/>
179
+ <inventory_link>0</inventory_link>
180
+ <applications>
181
+ <application>
182
+ <name>APACHE</name>
183
+ </application>
184
+ </applications>
185
+ <valuemap/>
186
+ </item>
187
+ <item>
188
+ <name>CPU Load</name>
189
+ <type>2</type>
190
+ <snmp_community/>
191
+ <multiplier>0</multiplier>
192
+ <snmp_oid/>
193
+ <key>apache[CPULoad]</key>
194
+ <delay>0</delay>
195
+ <history>7</history>
196
+ <trends>365</trends>
197
+ <status>0</status>
198
+ <value_type>0</value_type>
199
+ <allowed_hosts>mb-sandbox</allowed_hosts>
200
+ <units/>
201
+ <delta>0</delta>
202
+ <snmpv3_securityname/>
203
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
204
+ <snmpv3_authpassphrase/>
205
+ <snmpv3_privpassphrase/>
206
+ <formula>1</formula>
207
+ <delay_flex/>
208
+ <params/>
209
+ <ipmi_sensor/>
210
+ <data_type>0</data_type>
211
+ <authtype>0</authtype>
212
+ <username/>
213
+ <password/>
214
+ <publickey/>
215
+ <privatekey/>
216
+ <port/>
217
+ <description/>
218
+ <inventory_link>0</inventory_link>
219
+ <applications>
220
+ <application>
221
+ <name>APACHE</name>
222
+ </application>
223
+ </applications>
224
+ <valuemap/>
225
+ </item>
226
+ <item>
227
+ <name>DNS Lookup</name>
228
+ <type>2</type>
229
+ <snmp_community/>
230
+ <multiplier>0</multiplier>
231
+ <snmp_oid/>
232
+ <key>apache[c_dns]</key>
233
+ <delay>0</delay>
234
+ <history>7</history>
235
+ <trends>365</trends>
236
+ <status>0</status>
237
+ <value_type>3</value_type>
238
+ <allowed_hosts>mb-sandbox</allowed_hosts>
239
+ <units/>
240
+ <delta>0</delta>
241
+ <snmpv3_securityname/>
242
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
243
+ <snmpv3_authpassphrase/>
244
+ <snmpv3_privpassphrase/>
245
+ <formula>1</formula>
246
+ <delay_flex/>
247
+ <params/>
248
+ <ipmi_sensor/>
249
+ <data_type>0</data_type>
250
+ <authtype>0</authtype>
251
+ <username/>
252
+ <password/>
253
+ <publickey/>
254
+ <privatekey/>
255
+ <port/>
256
+ <description/>
257
+ <inventory_link>0</inventory_link>
258
+ <applications>
259
+ <application>
260
+ <name>APACHE</name>
261
+ </application>
262
+ </applications>
263
+ <valuemap/>
264
+ </item>
265
+ <item>
266
+ <name>Free workers</name>
267
+ <type>15</type>
268
+ <snmp_community/>
269
+ <multiplier>0</multiplier>
270
+ <snmp_oid/>
271
+ <key>apache[FreeWorkers]</key>
272
+ <delay>60</delay>
273
+ <history>7</history>
274
+ <trends>365</trends>
275
+ <status>0</status>
276
+ <value_type>0</value_type>
277
+ <allowed_hosts/>
278
+ <units>%</units>
279
+ <delta>0</delta>
280
+ <snmpv3_securityname/>
281
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
282
+ <snmpv3_authpassphrase/>
283
+ <snmpv3_privpassphrase/>
284
+ <formula>1</formula>
285
+ <delay_flex/>
286
+ <params>100*last(&quot;apache[IdleWorkers]&quot;)/(last(&quot;apache[BusyWorkers]&quot;) + last(&quot;apache[IdleWorkers]&quot;))</params>
287
+ <ipmi_sensor/>
288
+ <data_type>0</data_type>
289
+ <authtype>0</authtype>
290
+ <username/>
291
+ <password/>
292
+ <publickey/>
293
+ <privatekey/>
294
+ <port/>
295
+ <description/>
296
+ <inventory_link>0</inventory_link>
297
+ <applications>
298
+ <application>
299
+ <name>APACHE</name>
300
+ </application>
301
+ </applications>
302
+ <valuemap/>
303
+ </item>
304
+ <item>
305
+ <name>Gracefully Finishing</name>
306
+ <type>2</type>
307
+ <snmp_community/>
308
+ <multiplier>0</multiplier>
309
+ <snmp_oid/>
310
+ <key>apache[c_finish]</key>
311
+ <delay>0</delay>
312
+ <history>7</history>
313
+ <trends>365</trends>
314
+ <status>0</status>
315
+ <value_type>3</value_type>
316
+ <allowed_hosts>mb-sandbox</allowed_hosts>
317
+ <units/>
318
+ <delta>0</delta>
319
+ <snmpv3_securityname/>
320
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
321
+ <snmpv3_authpassphrase/>
322
+ <snmpv3_privpassphrase/>
323
+ <formula>1</formula>
324
+ <delay_flex/>
325
+ <params/>
326
+ <ipmi_sensor/>
327
+ <data_type>0</data_type>
328
+ <authtype>0</authtype>
329
+ <username/>
330
+ <password/>
331
+ <publickey/>
332
+ <privatekey/>
333
+ <port/>
334
+ <description/>
335
+ <inventory_link>0</inventory_link>
336
+ <applications>
337
+ <application>
338
+ <name>APACHE</name>
339
+ </application>
340
+ </applications>
341
+ <valuemap/>
342
+ </item>
343
+ <item>
344
+ <name>Idle</name>
345
+ <type>2</type>
346
+ <snmp_community/>
347
+ <multiplier>0</multiplier>
348
+ <snmp_oid/>
349
+ <key>apache[c_idle]</key>
350
+ <delay>0</delay>
351
+ <history>7</history>
352
+ <trends>365</trends>
353
+ <status>0</status>
354
+ <value_type>3</value_type>
355
+ <allowed_hosts>mb-sandbox</allowed_hosts>
356
+ <units/>
357
+ <delta>0</delta>
358
+ <snmpv3_securityname/>
359
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
360
+ <snmpv3_authpassphrase/>
361
+ <snmpv3_privpassphrase/>
362
+ <formula>1</formula>
363
+ <delay_flex/>
364
+ <params/>
365
+ <ipmi_sensor/>
366
+ <data_type>0</data_type>
367
+ <authtype>0</authtype>
368
+ <username/>
369
+ <password/>
370
+ <publickey/>
371
+ <privatekey/>
372
+ <port/>
373
+ <description/>
374
+ <inventory_link>0</inventory_link>
375
+ <applications>
376
+ <application>
377
+ <name>APACHE</name>
378
+ </application>
379
+ </applications>
380
+ <valuemap/>
381
+ </item>
382
+ <item>
383
+ <name>Idle cleaning Workers</name>
384
+ <type>2</type>
385
+ <snmp_community/>
386
+ <multiplier>0</multiplier>
387
+ <snmp_oid/>
388
+ <key>apache[c_cleanup]</key>
389
+ <delay>0</delay>
390
+ <history>7</history>
391
+ <trends>365</trends>
392
+ <status>0</status>
393
+ <value_type>3</value_type>
394
+ <allowed_hosts>mb-sandbox</allowed_hosts>
395
+ <units/>
396
+ <delta>0</delta>
397
+ <snmpv3_securityname/>
398
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
399
+ <snmpv3_authpassphrase/>
400
+ <snmpv3_privpassphrase/>
401
+ <formula>1</formula>
402
+ <delay_flex/>
403
+ <params/>
404
+ <ipmi_sensor/>
405
+ <data_type>0</data_type>
406
+ <authtype>0</authtype>
407
+ <username/>
408
+ <password/>
409
+ <publickey/>
410
+ <privatekey/>
411
+ <port/>
412
+ <description/>
413
+ <inventory_link>0</inventory_link>
414
+ <applications>
415
+ <application>
416
+ <name>APACHE</name>
417
+ </application>
418
+ </applications>
419
+ <valuemap/>
420
+ </item>
421
+ <item>
422
+ <name>Idle Workers</name>
423
+ <type>2</type>
424
+ <snmp_community/>
425
+ <multiplier>0</multiplier>
426
+ <snmp_oid/>
427
+ <key>apache[IdleWorkers]</key>
428
+ <delay>0</delay>
429
+ <history>7</history>
430
+ <trends>365</trends>
431
+ <status>0</status>
432
+ <value_type>3</value_type>
433
+ <allowed_hosts>mb-sandbox</allowed_hosts>
434
+ <units/>
435
+ <delta>0</delta>
436
+ <snmpv3_securityname/>
437
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
438
+ <snmpv3_authpassphrase/>
439
+ <snmpv3_privpassphrase/>
440
+ <formula>1</formula>
441
+ <delay_flex/>
442
+ <params/>
443
+ <ipmi_sensor/>
444
+ <data_type>0</data_type>
445
+ <authtype>0</authtype>
446
+ <username/>
447
+ <password/>
448
+ <publickey/>
449
+ <privatekey/>
450
+ <port/>
451
+ <description/>
452
+ <inventory_link>0</inventory_link>
453
+ <applications>
454
+ <application>
455
+ <name>APACHE</name>
456
+ </application>
457
+ </applications>
458
+ <valuemap/>
459
+ </item>
460
+ <item>
461
+ <name>Keep Alive</name>
462
+ <type>2</type>
463
+ <snmp_community/>
464
+ <multiplier>0</multiplier>
465
+ <snmp_oid/>
466
+ <key>apache[c_keep]</key>
467
+ <delay>0</delay>
468
+ <history>7</history>
469
+ <trends>365</trends>
470
+ <status>0</status>
471
+ <value_type>3</value_type>
472
+ <allowed_hosts>mb-sandbox</allowed_hosts>
473
+ <units/>
474
+ <delta>0</delta>
475
+ <snmpv3_securityname/>
476
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
477
+ <snmpv3_authpassphrase/>
478
+ <snmpv3_privpassphrase/>
479
+ <formula>1</formula>
480
+ <delay_flex/>
481
+ <params/>
482
+ <ipmi_sensor/>
483
+ <data_type>0</data_type>
484
+ <authtype>0</authtype>
485
+ <username/>
486
+ <password/>
487
+ <publickey/>
488
+ <privatekey/>
489
+ <port/>
490
+ <description/>
491
+ <inventory_link>0</inventory_link>
492
+ <applications>
493
+ <application>
494
+ <name>APACHE</name>
495
+ </application>
496
+ </applications>
497
+ <valuemap/>
498
+ </item>
499
+ <item>
500
+ <name>Logging</name>
501
+ <type>2</type>
502
+ <snmp_community/>
503
+ <multiplier>0</multiplier>
504
+ <snmp_oid/>
505
+ <key>apache[c_log]</key>
506
+ <delay>0</delay>
507
+ <history>7</history>
508
+ <trends>365</trends>
509
+ <status>0</status>
510
+ <value_type>3</value_type>
511
+ <allowed_hosts>mb-sandbox</allowed_hosts>
512
+ <units/>
513
+ <delta>0</delta>
514
+ <snmpv3_securityname/>
515
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
516
+ <snmpv3_authpassphrase/>
517
+ <snmpv3_privpassphrase/>
518
+ <formula>1</formula>
519
+ <delay_flex/>
520
+ <params/>
521
+ <ipmi_sensor/>
522
+ <data_type>0</data_type>
523
+ <authtype>0</authtype>
524
+ <username/>
525
+ <password/>
526
+ <publickey/>
527
+ <privatekey/>
528
+ <port/>
529
+ <description/>
530
+ <inventory_link>0</inventory_link>
531
+ <applications>
532
+ <application>
533
+ <name>APACHE</name>
534
+ </application>
535
+ </applications>
536
+ <valuemap/>
537
+ </item>
538
+ <item>
539
+ <name>Reading Request</name>
540
+ <type>2</type>
541
+ <snmp_community/>
542
+ <multiplier>0</multiplier>
543
+ <snmp_oid/>
544
+ <key>apache[c_read]</key>
545
+ <delay>0</delay>
546
+ <history>7</history>
547
+ <trends>365</trends>
548
+ <status>0</status>
549
+ <value_type>3</value_type>
550
+ <allowed_hosts>mb-sandbox</allowed_hosts>
551
+ <units/>
552
+ <delta>0</delta>
553
+ <snmpv3_securityname/>
554
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
555
+ <snmpv3_authpassphrase/>
556
+ <snmpv3_privpassphrase/>
557
+ <formula>1</formula>
558
+ <delay_flex/>
559
+ <params/>
560
+ <ipmi_sensor/>
561
+ <data_type>0</data_type>
562
+ <authtype>0</authtype>
563
+ <username/>
564
+ <password/>
565
+ <publickey/>
566
+ <privatekey/>
567
+ <port/>
568
+ <description/>
569
+ <inventory_link>0</inventory_link>
570
+ <applications>
571
+ <application>
572
+ <name>APACHE</name>
573
+ </application>
574
+ </applications>
575
+ <valuemap/>
576
+ </item>
577
+ <item>
578
+ <name>Requests / Second</name>
579
+ <type>2</type>
580
+ <snmp_community/>
581
+ <multiplier>0</multiplier>
582
+ <snmp_oid/>
583
+ <key>apache[ReqPerSec]</key>
584
+ <delay>0</delay>
585
+ <history>7</history>
586
+ <trends>365</trends>
587
+ <status>0</status>
588
+ <value_type>0</value_type>
589
+ <allowed_hosts>mb-sandbox</allowed_hosts>
590
+ <units/>
591
+ <delta>0</delta>
592
+ <snmpv3_securityname/>
593
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
594
+ <snmpv3_authpassphrase/>
595
+ <snmpv3_privpassphrase/>
596
+ <formula>1</formula>
597
+ <delay_flex/>
598
+ <params/>
599
+ <ipmi_sensor/>
600
+ <data_type>0</data_type>
601
+ <authtype>0</authtype>
602
+ <username/>
603
+ <password/>
604
+ <publickey/>
605
+ <privatekey/>
606
+ <port/>
607
+ <description/>
608
+ <inventory_link>0</inventory_link>
609
+ <applications>
610
+ <application>
611
+ <name>APACHE</name>
612
+ </application>
613
+ </applications>
614
+ <valuemap/>
615
+ </item>
616
+ <item>
617
+ <name>Sending Reply</name>
618
+ <type>2</type>
619
+ <snmp_community/>
620
+ <multiplier>0</multiplier>
621
+ <snmp_oid/>
622
+ <key>apache[c_send]</key>
623
+ <delay>0</delay>
624
+ <history>7</history>
625
+ <trends>365</trends>
626
+ <status>0</status>
627
+ <value_type>3</value_type>
628
+ <allowed_hosts>mb-sandbox</allowed_hosts>
629
+ <units/>
630
+ <delta>0</delta>
631
+ <snmpv3_securityname/>
632
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
633
+ <snmpv3_authpassphrase/>
634
+ <snmpv3_privpassphrase/>
635
+ <formula>1</formula>
636
+ <delay_flex/>
637
+ <params/>
638
+ <ipmi_sensor/>
639
+ <data_type>0</data_type>
640
+ <authtype>0</authtype>
641
+ <username/>
642
+ <password/>
643
+ <publickey/>
644
+ <privatekey/>
645
+ <port/>
646
+ <description/>
647
+ <inventory_link>0</inventory_link>
648
+ <applications>
649
+ <application>
650
+ <name>APACHE</name>
651
+ </application>
652
+ </applications>
653
+ <valuemap/>
654
+ </item>
655
+ <item>
656
+ <name>Starting Up</name>
657
+ <type>2</type>
658
+ <snmp_community/>
659
+ <multiplier>0</multiplier>
660
+ <snmp_oid/>
661
+ <key>apache[c_start]</key>
662
+ <delay>0</delay>
663
+ <history>7</history>
664
+ <trends>365</trends>
665
+ <status>0</status>
666
+ <value_type>3</value_type>
667
+ <allowed_hosts>mb-sandbox</allowed_hosts>
668
+ <units/>
669
+ <delta>0</delta>
670
+ <snmpv3_securityname/>
671
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
672
+ <snmpv3_authpassphrase/>
673
+ <snmpv3_privpassphrase/>
674
+ <formula>1</formula>
675
+ <delay_flex/>
676
+ <params/>
677
+ <ipmi_sensor/>
678
+ <data_type>0</data_type>
679
+ <authtype>0</authtype>
680
+ <username/>
681
+ <password/>
682
+ <publickey/>
683
+ <privatekey/>
684
+ <port/>
685
+ <description/>
686
+ <inventory_link>0</inventory_link>
687
+ <applications>
688
+ <application>
689
+ <name>APACHE</name>
690
+ </application>
691
+ </applications>
692
+ <valuemap/>
693
+ </item>
694
+ <item>
695
+ <name>Total Accesses</name>
696
+ <type>2</type>
697
+ <snmp_community/>
698
+ <multiplier>0</multiplier>
699
+ <snmp_oid/>
700
+ <key>apache[TotalAccesses]</key>
701
+ <delay>0</delay>
702
+ <history>7</history>
703
+ <trends>365</trends>
704
+ <status>0</status>
705
+ <value_type>3</value_type>
706
+ <allowed_hosts>mb-sandbox</allowed_hosts>
707
+ <units/>
708
+ <delta>0</delta>
709
+ <snmpv3_securityname/>
710
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
711
+ <snmpv3_authpassphrase/>
712
+ <snmpv3_privpassphrase/>
713
+ <formula>1</formula>
714
+ <delay_flex/>
715
+ <params/>
716
+ <ipmi_sensor/>
717
+ <data_type>0</data_type>
718
+ <authtype>0</authtype>
719
+ <username/>
720
+ <password/>
721
+ <publickey/>
722
+ <privatekey/>
723
+ <port/>
724
+ <description/>
725
+ <inventory_link>0</inventory_link>
726
+ <applications>
727
+ <application>
728
+ <name>APACHE</name>
729
+ </application>
730
+ </applications>
731
+ <valuemap/>
732
+ </item>
733
+ <item>
734
+ <name>Total KBytes</name>
735
+ <type>2</type>
736
+ <snmp_community/>
737
+ <multiplier>0</multiplier>
738
+ <snmp_oid/>
739
+ <key>apache[TotalKBytes]</key>
740
+ <delay>0</delay>
741
+ <history>7</history>
742
+ <trends>365</trends>
743
+ <status>0</status>
744
+ <value_type>0</value_type>
745
+ <allowed_hosts>mb-sandbox</allowed_hosts>
746
+ <units/>
747
+ <delta>0</delta>
748
+ <snmpv3_securityname/>
749
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
750
+ <snmpv3_authpassphrase/>
751
+ <snmpv3_privpassphrase/>
752
+ <formula>1</formula>
753
+ <delay_flex/>
754
+ <params/>
755
+ <ipmi_sensor/>
756
+ <data_type>0</data_type>
757
+ <authtype>0</authtype>
758
+ <username/>
759
+ <password/>
760
+ <publickey/>
761
+ <privatekey/>
762
+ <port/>
763
+ <description/>
764
+ <inventory_link>0</inventory_link>
765
+ <applications>
766
+ <application>
767
+ <name>APACHE</name>
768
+ </application>
769
+ </applications>
770
+ <valuemap/>
771
+ </item>
772
+ <item>
773
+ <name>Uptime</name>
774
+ <type>2</type>
775
+ <snmp_community/>
776
+ <multiplier>0</multiplier>
777
+ <snmp_oid/>
778
+ <key>apache[Uptime]</key>
779
+ <delay>0</delay>
780
+ <history>7</history>
781
+ <trends>365</trends>
782
+ <status>0</status>
783
+ <value_type>0</value_type>
784
+ <allowed_hosts>mb-sandbox</allowed_hosts>
785
+ <units/>
786
+ <delta>0</delta>
787
+ <snmpv3_securityname/>
788
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
789
+ <snmpv3_authpassphrase/>
790
+ <snmpv3_privpassphrase/>
791
+ <formula>1</formula>
792
+ <delay_flex/>
793
+ <params/>
794
+ <ipmi_sensor/>
795
+ <data_type>0</data_type>
796
+ <authtype>0</authtype>
797
+ <username/>
798
+ <password/>
799
+ <publickey/>
800
+ <privatekey/>
801
+ <port/>
802
+ <description/>
803
+ <inventory_link>0</inventory_link>
804
+ <applications>
805
+ <application>
806
+ <name>APACHE</name>
807
+ </application>
808
+ </applications>
809
+ <valuemap/>
810
+ </item>
811
+ <item>
812
+ <name>Waiting</name>
813
+ <type>2</type>
814
+ <snmp_community/>
815
+ <multiplier>0</multiplier>
816
+ <snmp_oid/>
817
+ <key>apache[c_waiting]</key>
818
+ <delay>0</delay>
819
+ <history>7</history>
820
+ <trends>365</trends>
821
+ <status>0</status>
822
+ <value_type>3</value_type>
823
+ <allowed_hosts>mb-sandbox</allowed_hosts>
824
+ <units/>
825
+ <delta>0</delta>
826
+ <snmpv3_securityname/>
827
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
828
+ <snmpv3_authpassphrase/>
829
+ <snmpv3_privpassphrase/>
830
+ <formula>1</formula>
831
+ <delay_flex/>
832
+ <params/>
833
+ <ipmi_sensor/>
834
+ <data_type>0</data_type>
835
+ <authtype>0</authtype>
836
+ <username/>
837
+ <password/>
838
+ <publickey/>
839
+ <privatekey/>
840
+ <port/>
841
+ <description/>
842
+ <inventory_link>0</inventory_link>
843
+ <applications>
844
+ <application>
845
+ <name>APACHE</name>
846
+ </application>
847
+ </applications>
848
+ <valuemap/>
849
+ </item>
850
+ </items>
851
+ <discovery_rules/>
852
+ <macros/>
853
+ <templates/>
854
+ <screens>
855
+ <screen>
856
+ <name>Full Apache</name>
857
+ <hsize>1</hsize>
858
+ <vsize>4</vsize>
859
+ <screen_items>
860
+ <screen_item>
861
+ <resourcetype>0</resourcetype>
862
+ <width>500</width>
863
+ <height>100</height>
864
+ <x>0</x>
865
+ <y>1</y>
866
+ <colspan>1</colspan>
867
+ <rowspan>1</rowspan>
868
+ <elements>0</elements>
869
+ <valign>0</valign>
870
+ <halign>0</halign>
871
+ <style>0</style>
872
+ <url/>
873
+ <dynamic>0</dynamic>
874
+ <sort_triggers>0</sort_triggers>
875
+ <resource>
876
+ <name>Apache connections</name>
877
+ <host>Apache Stats</host>
878
+ </resource>
879
+ </screen_item>
880
+ <screen_item>
881
+ <resourcetype>0</resourcetype>
882
+ <width>500</width>
883
+ <height>100</height>
884
+ <x>0</x>
885
+ <y>3</y>
886
+ <colspan>1</colspan>
887
+ <rowspan>1</rowspan>
888
+ <elements>0</elements>
889
+ <valign>0</valign>
890
+ <halign>0</halign>
891
+ <style>0</style>
892
+ <url/>
893
+ <dynamic>0</dynamic>
894
+ <sort_triggers>0</sort_triggers>
895
+ <resource>
896
+ <name>Apache workers</name>
897
+ <host>Apache Stats</host>
898
+ </resource>
899
+ </screen_item>
900
+ <screen_item>
901
+ <resourcetype>3</resourcetype>
902
+ <width>500</width>
903
+ <height>100</height>
904
+ <x>0</x>
905
+ <y>0</y>
906
+ <colspan>1</colspan>
907
+ <rowspan>1</rowspan>
908
+ <elements>1</elements>
909
+ <valign>0</valign>
910
+ <halign>0</halign>
911
+ <style>1</style>
912
+ <url/>
913
+ <dynamic>0</dynamic>
914
+ <sort_triggers>0</sort_triggers>
915
+ <resource>
916
+ <key>apache[Uptime]</key>
917
+ <host>Apache Stats</host>
918
+ </resource>
919
+ </screen_item>
920
+ </screen_items>
921
+ </screen>
922
+ </screens>
923
+ </template>
924
+ </templates>
925
+ <graphs>
926
+ <graph>
927
+ <name>Apache connections</name>
928
+ <width>900</width>
929
+ <height>200</height>
930
+ <yaxismin>0.0000</yaxismin>
931
+ <yaxismax>100.0000</yaxismax>
932
+ <show_work_period>1</show_work_period>
933
+ <show_triggers>1</show_triggers>
934
+ <type>0</type>
935
+ <show_legend>1</show_legend>
936
+ <show_3d>0</show_3d>
937
+ <percent_left>0.0000</percent_left>
938
+ <percent_right>0.0000</percent_right>
939
+ <ymin_type_1>1</ymin_type_1>
940
+ <ymax_type_1>0</ymax_type_1>
941
+ <ymin_item_1>0</ymin_item_1>
942
+ <ymax_item_1>0</ymax_item_1>
943
+ <graph_items>
944
+ <graph_item>
945
+ <sortorder>0</sortorder>
946
+ <drawtype>0</drawtype>
947
+ <color>C80000</color>
948
+ <yaxisside>0</yaxisside>
949
+ <calc_fnc>2</calc_fnc>
950
+ <type>0</type>
951
+ <item>
952
+ <host>Apache Stats</host>
953
+ <key>apache[c_closing]</key>
954
+ </item>
955
+ </graph_item>
956
+ <graph_item>
957
+ <sortorder>1</sortorder>
958
+ <drawtype>0</drawtype>
959
+ <color>00C800</color>
960
+ <yaxisside>0</yaxisside>
961
+ <calc_fnc>2</calc_fnc>
962
+ <type>0</type>
963
+ <item>
964
+ <host>Apache Stats</host>
965
+ <key>apache[c_dns]</key>
966
+ </item>
967
+ </graph_item>
968
+ <graph_item>
969
+ <sortorder>2</sortorder>
970
+ <drawtype>0</drawtype>
971
+ <color>0000C8</color>
972
+ <yaxisside>0</yaxisside>
973
+ <calc_fnc>2</calc_fnc>
974
+ <type>0</type>
975
+ <item>
976
+ <host>Apache Stats</host>
977
+ <key>apache[c_finish]</key>
978
+ </item>
979
+ </graph_item>
980
+ <graph_item>
981
+ <sortorder>3</sortorder>
982
+ <drawtype>0</drawtype>
983
+ <color>C800C8</color>
984
+ <yaxisside>0</yaxisside>
985
+ <calc_fnc>2</calc_fnc>
986
+ <type>0</type>
987
+ <item>
988
+ <host>Apache Stats</host>
989
+ <key>apache[c_cleanup]</key>
990
+ </item>
991
+ </graph_item>
992
+ <graph_item>
993
+ <sortorder>4</sortorder>
994
+ <drawtype>0</drawtype>
995
+ <color>C8C800</color>
996
+ <yaxisside>0</yaxisside>
997
+ <calc_fnc>2</calc_fnc>
998
+ <type>0</type>
999
+ <item>
1000
+ <host>Apache Stats</host>
1001
+ <key>apache[c_keep]</key>
1002
+ </item>
1003
+ </graph_item>
1004
+ <graph_item>
1005
+ <sortorder>5</sortorder>
1006
+ <drawtype>0</drawtype>
1007
+ <color>C8C8C8</color>
1008
+ <yaxisside>0</yaxisside>
1009
+ <calc_fnc>2</calc_fnc>
1010
+ <type>0</type>
1011
+ <item>
1012
+ <host>Apache Stats</host>
1013
+ <key>apache[c_log]</key>
1014
+ </item>
1015
+ </graph_item>
1016
+ <graph_item>
1017
+ <sortorder>6</sortorder>
1018
+ <drawtype>0</drawtype>
1019
+ <color>960000</color>
1020
+ <yaxisside>0</yaxisside>
1021
+ <calc_fnc>2</calc_fnc>
1022
+ <type>0</type>
1023
+ <item>
1024
+ <host>Apache Stats</host>
1025
+ <key>apache[c_read]</key>
1026
+ </item>
1027
+ </graph_item>
1028
+ <graph_item>
1029
+ <sortorder>7</sortorder>
1030
+ <drawtype>0</drawtype>
1031
+ <color>009600</color>
1032
+ <yaxisside>0</yaxisside>
1033
+ <calc_fnc>2</calc_fnc>
1034
+ <type>0</type>
1035
+ <item>
1036
+ <host>Apache Stats</host>
1037
+ <key>apache[c_send]</key>
1038
+ </item>
1039
+ </graph_item>
1040
+ <graph_item>
1041
+ <sortorder>8</sortorder>
1042
+ <drawtype>0</drawtype>
1043
+ <color>000096</color>
1044
+ <yaxisside>0</yaxisside>
1045
+ <calc_fnc>2</calc_fnc>
1046
+ <type>0</type>
1047
+ <item>
1048
+ <host>Apache Stats</host>
1049
+ <key>apache[c_start]</key>
1050
+ </item>
1051
+ </graph_item>
1052
+ <graph_item>
1053
+ <sortorder>9</sortorder>
1054
+ <drawtype>0</drawtype>
1055
+ <color>888888</color>
1056
+ <yaxisside>0</yaxisside>
1057
+ <calc_fnc>2</calc_fnc>
1058
+ <type>0</type>
1059
+ <item>
1060
+ <host>Apache Stats</host>
1061
+ <key>apache[c_waiting]</key>
1062
+ </item>
1063
+ </graph_item>
1064
+ </graph_items>
1065
+ </graph>
1066
+ <graph>
1067
+ <name>Apache Traffic</name>
1068
+ <width>900</width>
1069
+ <height>200</height>
1070
+ <yaxismin>0.0000</yaxismin>
1071
+ <yaxismax>100.0000</yaxismax>
1072
+ <show_work_period>1</show_work_period>
1073
+ <show_triggers>1</show_triggers>
1074
+ <type>0</type>
1075
+ <show_legend>1</show_legend>
1076
+ <show_3d>0</show_3d>
1077
+ <percent_left>0.0000</percent_left>
1078
+ <percent_right>0.0000</percent_right>
1079
+ <ymin_type_1>0</ymin_type_1>
1080
+ <ymax_type_1>0</ymax_type_1>
1081
+ <ymin_item_1>0</ymin_item_1>
1082
+ <ymax_item_1>0</ymax_item_1>
1083
+ <graph_items>
1084
+ <graph_item>
1085
+ <sortorder>0</sortorder>
1086
+ <drawtype>2</drawtype>
1087
+ <color>00C800</color>
1088
+ <yaxisside>0</yaxisside>
1089
+ <calc_fnc>7</calc_fnc>
1090
+ <type>0</type>
1091
+ <item>
1092
+ <host>Apache Stats</host>
1093
+ <key>apache[BytesPerSec]</key>
1094
+ </item>
1095
+ </graph_item>
1096
+ </graph_items>
1097
+ </graph>
1098
+ <graph>
1099
+ <name>Apache workers</name>
1100
+ <width>900</width>
1101
+ <height>200</height>
1102
+ <yaxismin>0.0000</yaxismin>
1103
+ <yaxismax>100.0000</yaxismax>
1104
+ <show_work_period>1</show_work_period>
1105
+ <show_triggers>1</show_triggers>
1106
+ <type>0</type>
1107
+ <show_legend>1</show_legend>
1108
+ <show_3d>0</show_3d>
1109
+ <percent_left>0.0000</percent_left>
1110
+ <percent_right>0.0000</percent_right>
1111
+ <ymin_type_1>1</ymin_type_1>
1112
+ <ymax_type_1>0</ymax_type_1>
1113
+ <ymin_item_1>0</ymin_item_1>
1114
+ <ymax_item_1>0</ymax_item_1>
1115
+ <graph_items>
1116
+ <graph_item>
1117
+ <sortorder>0</sortorder>
1118
+ <drawtype>0</drawtype>
1119
+ <color>C80000</color>
1120
+ <yaxisside>0</yaxisside>
1121
+ <calc_fnc>7</calc_fnc>
1122
+ <type>0</type>
1123
+ <item>
1124
+ <host>Apache Stats</host>
1125
+ <key>apache[BusyWorkers]</key>
1126
+ </item>
1127
+ </graph_item>
1128
+ <graph_item>
1129
+ <sortorder>1</sortorder>
1130
+ <drawtype>0</drawtype>
1131
+ <color>00C800</color>
1132
+ <yaxisside>0</yaxisside>
1133
+ <calc_fnc>7</calc_fnc>
1134
+ <type>0</type>
1135
+ <item>
1136
+ <host>Apache Stats</host>
1137
+ <key>apache[IdleWorkers]</key>
1138
+ </item>
1139
+ </graph_item>
1140
+ </graph_items>
1141
+ </graph>
1142
+ </graphs>
1143
+ </zabbix_export>