zabbix-ruby-client 0.0.21 → 0.0.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b7c785e3e21c22e937319260db7d843e953c691
4
- data.tar.gz: d768690cf80f157cca3cce5a154b67c147a721f9
3
+ metadata.gz: 1b7d2b5cef08435e7f4c0ec93804dbf9bf952615
4
+ data.tar.gz: 7fb136fcfc38eac3d8a5f0db4a7c522f315a9d86
5
5
  SHA512:
6
- metadata.gz: 3bc559deeca1dd30f9fe176c589ce6de10fe626556c5e1fe9bab2f6851e1409e0086037f951fd377358d861cd001d1960ae031b5c86db50c1e0297170aa894ba
7
- data.tar.gz: 072cc243d2329ea0631148846f908407385b0913fa4735f3ea55e4565742aaaebf5b769a859043b2035114100f35c4393b12d84c6a29699443c22170533a1311
6
+ metadata.gz: 19cfc32cc6446e7bf45ef9231048ec18921ac2f46d75bdd12264822bd045bd25a504361114bbeaab3da17d50b949f56b92d6e08cf2cdf59fe75193b3ba81d279
7
+ data.tar.gz: 82a9a487027401c714edf001a2823378ef66fd47c0c9839d044ab4c14f02a4da12ae07e1aa1cb9e7c7ed2eb6c2004bda78171b3345e21c410ca5ace2407ce99e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Zabbbix Ruby Client Changelog
2
2
  -----------------------------
3
3
 
4
+ ### v0.0.22 - 2014-08-09
5
+
6
+ * added RabbitMQ plugin
7
+ * added mysqlcommand plugin for graphing arbitrary mysql commands
8
+
4
9
  ### v0.0.21 - 2014-08-01
5
10
 
6
11
  * fix zabbix_sender return code 256
data/README.md CHANGED
@@ -79,27 +79,47 @@ Here is an example setup using the files generated by the init:
79
79
 
80
80
  There are a set of standart plugins included in the package, aimed at linux systems.
81
81
 
82
- * ubuntu system stats ([system_tpl](master/zabbix-templates/system_tpl.xml) includes the following)
83
- * load (uses /proc/loadavg) [load_tpl](master/zabbix-templates/load_tpl.xml)
84
- * cpu (uses /proc/stat) [cpu_tpl](master/zabbix-templates/cpu_tpl.xml)
85
- * memory (uses /proc/meminfo) [memory_tpl](master/zabbix-templates/memory_tpl.xml)
86
- * disk (uses /proc/diskstats) [disk_tpl](master/zabbix-templates/disk_tpl.xml)
82
+ * **ubuntu** system stats ([system_tpl](master/zabbix-templates/system_tpl.xml) includes the following)
83
+ * **load** (uses /proc/loadavg) [load_tpl](master/zabbix-templates/load_tpl.xml)
84
+ * **cpu** (uses /proc/stat) [cpu_tpl](master/zabbix-templates/cpu_tpl.xml)
85
+ * **memory** (uses /proc/meminfo) [memory_tpl](master/zabbix-templates/memory_tpl.xml)
86
+ * **disk** (uses /proc/diskstats) [disk_tpl](master/zabbix-templates/disk_tpl.xml)
87
87
  * args [ "md-0", "/", "vgebs" ] = group identifier, mountpoint, groupname where identifier is what is found in /proc/diskstats, and groupname is something found in df command. The mount point will be used as label.
88
- * network (uses /proc/net/dev) [network_tpl](master/zabbix-templates/network_tpl.xml)
88
+ * **network** (uses /proc/net/dev) [network_tpl](master/zabbix-templates/network_tpl.xml)
89
89
  * args [ eth0 ] is just the interface identifier
90
- * apt (uses ubuntu /usr/lib/update-notifier/apt-check) this one will populate the 'tag' field in host info, and is supposed to run every few hours or at least not every minute [apt_tpl](master/zabbix-templates/apt_tpl.xml)
91
- * sysinfo (uses uname -a) is populating the host info in the inventory, and should be ran at setup and/or monthly [sysinfo_tpl](master/zabbix-templates/sysinfo_tpl.xml)
92
- * apache (depends on mod_status with status_extended on) [apache_tpl](master/zabbix-templates/apache_tpl.xml)
93
- * mysql (uses mysqladmin extended-status) [mysql_tpl](master/zabbix-templates/mysql_tpl.xml)
94
- * postgres (uses psql and pg_stat_database) [postgres_tpl](master/zabbix-templates/postgres_tpl.xml)
90
+ * **apt** (uses ubuntu /usr/lib/update-notifier/apt-check) this one will populate the 'tag' field in host info, and is supposed to run every few hours or at least not every minute [apt_tpl](master/zabbix-templates/apt_tpl.xml)
91
+ * **sysinfo** (uses uname -a) is populating the host info in the inventory, and should be ran at setup and/or monthly [sysinfo_tpl](master/zabbix-templates/sysinfo_tpl.xml)
92
+ * **apache** (depends on mod_status with status_extended on) [apache_tpl](master/zabbix-templates/apache_tpl.xml)
93
+ * **mysql** (uses mysqladmin extended-status) [mysql_tpl](master/zabbix-templates/mysql_tpl.xml)
94
+ * **postgres** (uses psql and pg_stat_database) [postgres_tpl](master/zabbix-templates/postgres_tpl.xml)
95
95
  * best is to use a .pgpass file see http://www.postgresql.org/docs/9.0/interactive/libpq-pgpass.html
96
- * nginx (requires httpStubStatus nginx module) [nginx_tpl](master/zabbix-templates/nginx_tpl.xml)
97
- * redis (uses redis-cli info) [redis_tpl](master/zabbix-templates/redis_tpl.xml)
96
+ * **nginx** (requires httpStubStatus nginx module) [nginx_tpl](master/zabbix-templates/nginx_tpl.xml)
97
+ * **redis** (uses redis-cli info) [redis_tpl](master/zabbix-templates/redis_tpl.xml)
98
98
  * args [ "/path/to/redis-cli", "options to connect" ]
99
- * openvpn (uses /etc/openvpn/openvpn-status.log) [openvpn_tpl](master/zabbix-templates/openvpn_tpl.xml)
99
+ * **openvpn** (uses /etc/openvpn/openvpn-status.log) [openvpn_tpl](master/zabbix-templates/openvpn_tpl.xml)
100
100
  * args [ "/etc/openvpn/openvpn-status.log" ]
101
- * cisco (type ASA 5510) [cisco_tpl](master/zabbix-templates/cisco_tpl.xml)
101
+ * **cisco** (type ASA 5510) [cisco_tpl](master/zabbix-templates/cisco_tpl.xml)
102
102
  * uses a snmp setup
103
+ * **RabbitMQ** (uses [rabbitmqadmin](http://www.rabbitmq.com/management-cli.html)) [rabbitmq_tpl](master/zabbix-templates/rabbitmq_tpl.xml)
104
+ * args [ "/path/to/rabbitmqadmin", "login", "password" ]
105
+ * **mysqlcommand** (uses arbitrary mysql commands to create custom items)
106
+ * args [ "app_name", "dbname", "command_args", "command1_name", "command1_sql", "command2_name", "command2_sql" ]
107
+ * the 3 first args are common to all commands
108
+ * app_name will create an item named `app.app_name[command1_name]`
109
+ * past the 3 first args, the rest are key-values with a name and a sql command.
110
+ * if the name begins with a `_`, this underscore will be removed and the sql command is expected to be a list of value grouped by labels. For example [ "_usertypes", "select type, count(*) from users group by type" ] will generate something like
111
+ ````
112
+ myhost app.app_name[usertypes,APIUser] 1407593152 10
113
+ myhost app.app_name[usertypes,User] 1407593152 2843
114
+ ...
115
+ ````
116
+ * if the name includes commas (`,`) the sql command is expected to return one row with multple value. For example [ "max_attempts,min_attempts", "select max(attempts), min(attempts) from delayed_jobs"] will generate
117
+ ````
118
+ myhost app.app_name[max_attempts] 1407593152 40
119
+ myhost app.app_name[min_attempts] 1407593152 5
120
+ ````
121
+ * in all other case (no starting `_` and no `,`) in the item name, the sql command is expected to return a single columns and a single row, typically for `count(*)` commands.
122
+
103
123
 
104
124
  You can add extra plugins in a plugins/ dir in the working dir, just by copying one of the existing plugins in the repo and change to your need. All plugins present in plugins/ will be loaded if present in the config file you use. That can be convenient to test by using the -t flag, for example `bundle exec zrc -t testplugin.yml` where testplugin.yml only contains the name and args for your plugin.
105
125
 
@@ -0,0 +1,47 @@
1
+ require "zabbix-ruby-client/logger"
2
+
3
+ module ZabbixRubyClient
4
+ module Plugins
5
+ module Mysqlcommand
6
+ extend self
7
+
8
+ def collect(*args)
9
+ host = args.delete
10
+ app = args.delete
11
+ mysqldb = args.delete
12
+ mysqlargs = args.delete
13
+ mysqlcommand = "mysql #{mysqlargs} -s --skip-column-names -e \"%s\" #{mysqldb}"
14
+ back = []
15
+ Hash[*args].each do |name, command|
16
+ time = Time.now.to_i
17
+ comm = sprintf(mysqlcommand, command.gsub(/"/,'\"'))
18
+ res = `#{comm}`
19
+ if $?.to_i == 0
20
+ if name[0] == "_"
21
+ res.each_line do |line|
22
+ label, value = line,split("\t")
23
+ back << "#{host} app.#{app}[#{name[1..-1]},#{label}] #{time} #{value}"
24
+ end
25
+ elsif name[/,/]
26
+ res = res.split("\t")
27
+ name.split(',').each_with_index do |n, i|
28
+ back << "#{host} app.#{app}[#{n}] #{time} #{res[i]}"
29
+ end
30
+ else
31
+ back << "#{host} app.#{app}[#{name}] #{time} #{res}"
32
+ end
33
+ else
34
+ Log.warn "The connection failed."
35
+ return []
36
+ end
37
+
38
+ end
39
+ return back
40
+ end
41
+
42
+ end
43
+ end
44
+ end
45
+
46
+ ZabbixRubyClient::Plugins.register('mysqlcommand', ZabbixRubyClient::Plugins::Mysqlcommand)
47
+
@@ -0,0 +1,58 @@
1
+ # read the remote data with http://www.rabbitmq.com/management-cli.html
2
+ require "zabbix-ruby-client/logger"
3
+ require "zabbix-ruby-client/plugin_base"
4
+ require "json"
5
+
6
+ module ZabbixRubyClient
7
+ module Plugins
8
+ module Rabbitmq
9
+ extend self
10
+ extend ZabbixRubyClient::PluginBase
11
+
12
+ def collect(*args)
13
+ host = args[0]
14
+ rabbitmqadmin = args[1]
15
+ login = args[2]
16
+ pass = args[3]
17
+ info = get_info(rabbitmqadmin, login, pass)
18
+ back = []
19
+ if info
20
+ time = Time.now.to_i
21
+ back << "#{host} rabbitmq.erlang.version #{time} #{info['erlang_version']}"
22
+ back << "#{host} rabbitmq.message.ack #{time} #{info['message_stats']['ack']}"
23
+ back << "#{host} rabbitmq.message.ack.rate #{time} #{info['message_stats']['ack_details']['rate'].round}"
24
+ back << "#{host} rabbitmq.message.deliver #{time} #{info['message_stats']['deliver']}"
25
+ back << "#{host} rabbitmq.message.deliver.rate #{time} #{info['message_stats']['deliver_details']['rate'].round}"
26
+ back << "#{host} rabbitmq.message.deliver_get #{time} #{info['message_stats']['deliver_get']}"
27
+ back << "#{host} rabbitmq.message.deliver_get.rate #{time} #{info['message_stats']['deliver_get_details']['rate'].round}"
28
+ back << "#{host} rabbitmq.message.publish #{time} #{info['message_stats']['publish']}"
29
+ back << "#{host} rabbitmq.message.publish.rate #{time} #{info['message_stats']['publish_details']['rate'].round}"
30
+ back << "#{host} rabbitmq.message.redeliver #{time} #{info['message_stats']['redeliver']}"
31
+ back << "#{host} rabbitmq.message.redeliver.rate #{time} #{info['message_stats']['redeliver_details']['rate'].round}"
32
+ back << "#{host} rabbitmq.queue.total.messages #{time} #{info['queue_totals']['messages']}"
33
+ back << "#{host} rabbitmq.queue.total.messages_ready #{time} #{info['queue_totals']['messages_ready']}"
34
+ back << "#{host} rabbitmq.queue.total.messages_unacknowledged #{time} #{info['queue_totals']['messages_unacknowledged']}"
35
+ back << "#{host} rabbitmq.total.channels #{time} #{info['object_totals']['channels']}"
36
+ back << "#{host} rabbitmq.total.connections #{time} #{info['object_totals']['connections']}"
37
+ back << "#{host} rabbitmq.total.consumers #{time} #{info['object_totals']['consumers']}"
38
+ back << "#{host} rabbitmq.total.exchanges #{time} #{info['object_totals']['exchanges']}"
39
+ back << "#{host} rabbitmq.total.listeners #{time} #{info['listeners'].count}"
40
+ back << "#{host} rabbitmq.total.queues #{time} #{info['object_totals']['queues']}"
41
+ back << "#{host} rabbitmq.version #{time} #{info['rabbitmq_version']}"
42
+ end
43
+ back
44
+ end
45
+
46
+ private
47
+
48
+ def get_info(rabbitmqadmin, login, pass)
49
+ command = "#{rabbitmqadmin} -u #{login} -p #{pass} -f raw_json show overview"
50
+ Log.debug command
51
+ JSON.parse(`#{command}`).first
52
+ end
53
+
54
+ end
55
+ end
56
+ end
57
+
58
+ ZabbixRubyClient::Plugins.register('rabbitmq', ZabbixRubyClient::Plugins::Rabbitmq)
@@ -24,6 +24,7 @@ module ZabbixRubyClient
24
24
  ZabbixRubyClient::Log.set_logger(File.join(@logsdir, 'zrc.log'), @config['loglevel'])
25
25
  ZabbixRubyClient::Log.debug @config.inspect
26
26
  @is_22 = /v2\.2\./.match zabbix_sender_version
27
+ ZabbixRubyClient::Log.debug "zabbix sender version #{zabbix_sender_version}"
27
28
  end
28
29
 
29
30
  def collect
@@ -47,10 +48,10 @@ module ZabbixRubyClient
47
48
  if @is_22
48
49
  case $?.to_i
49
50
  when 0
50
- ZabbixRubyClient::Log.debug "zabbix-sender: Data Sent"
51
+ ZabbixRubyClient::Log.debug "zabbix-sender: Data Sent (#{$?})"
51
52
  when 1
52
53
  @store.keepdata(file)
53
- ZabbixRubyClient::Log.error "zabbix-sender: Sending failed"
54
+ ZabbixRubyClient::Log.error "zabbix-sender: Sending failed (#{$?})"
54
55
  ZabbixRubyClient::Log.error res
55
56
  when 256
56
57
  @store.keepdata(file)
@@ -65,6 +66,7 @@ module ZabbixRubyClient
65
66
  end
66
67
  else
67
68
  if $?.to_i != 0
69
+ ZabbixRubyClient::Log.warn "v2.0"
68
70
  @store.keepdata(file)
69
71
  ZabbixRubyClient::Log.error "zabbix-sender: Sending failed"
70
72
  ZabbixRubyClient::Log.error res
@@ -88,7 +90,7 @@ module ZabbixRubyClient
88
90
  end
89
91
 
90
92
  def zabbix_sender_version
91
- v = `#{@config['zabbix']['sender']} -V &> /dev/null | head -1`
93
+ v = `#{@config['zabbix']['sender']} -V | head -1`
92
94
  v.split(/\s/)[2]
93
95
  rescue
94
96
  false
@@ -1,3 +1,3 @@
1
1
  module ZabbixRubyClient
2
- VERSION ||= "0.0.21"
2
+ VERSION ||= "0.0.22"
3
3
  end
@@ -0,0 +1,1454 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <zabbix_export>
3
+ <version>2.0</version>
4
+ <date>2014-08-08T07:42:17Z</date>
5
+ <groups>
6
+ <group>
7
+ <name>3. Service RabbitMQ</name>
8
+ </group>
9
+ </groups>
10
+ <templates>
11
+ <template>
12
+ <template>RabbitMQ</template>
13
+ <name>RabbitMQ (zrc)</name>
14
+ <groups>
15
+ <group>
16
+ <name>3. Service RabbitMQ</name>
17
+ </group>
18
+ </groups>
19
+ <applications>
20
+ <application>
21
+ <name>RabbitMQ</name>
22
+ </application>
23
+ </applications>
24
+ <items>
25
+ <item>
26
+ <name>Erlang Version</name>
27
+ <type>2</type>
28
+ <snmp_community/>
29
+ <multiplier>0</multiplier>
30
+ <snmp_oid/>
31
+ <key>rabbitmq.erlang.version</key>
32
+ <delay>0</delay>
33
+ <history>90</history>
34
+ <trends>365</trends>
35
+ <status>0</status>
36
+ <value_type>4</value_type>
37
+ <allowed_hosts/>
38
+ <units/>
39
+ <delta>0</delta>
40
+ <snmpv3_contextname/>
41
+ <snmpv3_securityname/>
42
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
43
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
44
+ <snmpv3_authpassphrase/>
45
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
46
+ <snmpv3_privpassphrase/>
47
+ <formula>1</formula>
48
+ <delay_flex/>
49
+ <params/>
50
+ <ipmi_sensor/>
51
+ <data_type>0</data_type>
52
+ <authtype>0</authtype>
53
+ <username/>
54
+ <password/>
55
+ <publickey/>
56
+ <privatekey/>
57
+ <port/>
58
+ <description/>
59
+ <inventory_link>0</inventory_link>
60
+ <applications>
61
+ <application>
62
+ <name>RabbitMQ</name>
63
+ </application>
64
+ </applications>
65
+ <valuemap/>
66
+ </item>
67
+ <item>
68
+ <name>Message ACK Rate</name>
69
+ <type>2</type>
70
+ <snmp_community/>
71
+ <multiplier>0</multiplier>
72
+ <snmp_oid/>
73
+ <key>rabbitmq.message.ack.rate</key>
74
+ <delay>0</delay>
75
+ <history>90</history>
76
+ <trends>365</trends>
77
+ <status>0</status>
78
+ <value_type>3</value_type>
79
+ <allowed_hosts/>
80
+ <units/>
81
+ <delta>0</delta>
82
+ <snmpv3_contextname/>
83
+ <snmpv3_securityname/>
84
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
85
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
86
+ <snmpv3_authpassphrase/>
87
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
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>RabbitMQ</name>
105
+ </application>
106
+ </applications>
107
+ <valuemap/>
108
+ </item>
109
+ <item>
110
+ <name>Message ACK Total</name>
111
+ <type>2</type>
112
+ <snmp_community/>
113
+ <multiplier>0</multiplier>
114
+ <snmp_oid/>
115
+ <key>rabbitmq.message.ack</key>
116
+ <delay>0</delay>
117
+ <history>90</history>
118
+ <trends>365</trends>
119
+ <status>0</status>
120
+ <value_type>3</value_type>
121
+ <allowed_hosts/>
122
+ <units/>
123
+ <delta>0</delta>
124
+ <snmpv3_contextname/>
125
+ <snmpv3_securityname/>
126
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
127
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
128
+ <snmpv3_authpassphrase/>
129
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
130
+ <snmpv3_privpassphrase/>
131
+ <formula>1</formula>
132
+ <delay_flex/>
133
+ <params/>
134
+ <ipmi_sensor/>
135
+ <data_type>0</data_type>
136
+ <authtype>0</authtype>
137
+ <username/>
138
+ <password/>
139
+ <publickey/>
140
+ <privatekey/>
141
+ <port/>
142
+ <description/>
143
+ <inventory_link>0</inventory_link>
144
+ <applications>
145
+ <application>
146
+ <name>RabbitMQ</name>
147
+ </application>
148
+ </applications>
149
+ <valuemap/>
150
+ </item>
151
+ <item>
152
+ <name>Message Deliver Rate</name>
153
+ <type>2</type>
154
+ <snmp_community/>
155
+ <multiplier>0</multiplier>
156
+ <snmp_oid/>
157
+ <key>rabbitmq.message.deliver.rate</key>
158
+ <delay>0</delay>
159
+ <history>90</history>
160
+ <trends>365</trends>
161
+ <status>0</status>
162
+ <value_type>3</value_type>
163
+ <allowed_hosts/>
164
+ <units/>
165
+ <delta>0</delta>
166
+ <snmpv3_contextname/>
167
+ <snmpv3_securityname/>
168
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
169
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
170
+ <snmpv3_authpassphrase/>
171
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
172
+ <snmpv3_privpassphrase/>
173
+ <formula>1</formula>
174
+ <delay_flex/>
175
+ <params/>
176
+ <ipmi_sensor/>
177
+ <data_type>0</data_type>
178
+ <authtype>0</authtype>
179
+ <username/>
180
+ <password/>
181
+ <publickey/>
182
+ <privatekey/>
183
+ <port/>
184
+ <description/>
185
+ <inventory_link>0</inventory_link>
186
+ <applications>
187
+ <application>
188
+ <name>RabbitMQ</name>
189
+ </application>
190
+ </applications>
191
+ <valuemap/>
192
+ </item>
193
+ <item>
194
+ <name>Message Deliver Total</name>
195
+ <type>2</type>
196
+ <snmp_community/>
197
+ <multiplier>0</multiplier>
198
+ <snmp_oid/>
199
+ <key>rabbitmq.message.deliver</key>
200
+ <delay>0</delay>
201
+ <history>90</history>
202
+ <trends>365</trends>
203
+ <status>0</status>
204
+ <value_type>3</value_type>
205
+ <allowed_hosts/>
206
+ <units/>
207
+ <delta>0</delta>
208
+ <snmpv3_contextname/>
209
+ <snmpv3_securityname/>
210
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
211
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
212
+ <snmpv3_authpassphrase/>
213
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
214
+ <snmpv3_privpassphrase/>
215
+ <formula>1</formula>
216
+ <delay_flex/>
217
+ <params/>
218
+ <ipmi_sensor/>
219
+ <data_type>0</data_type>
220
+ <authtype>0</authtype>
221
+ <username/>
222
+ <password/>
223
+ <publickey/>
224
+ <privatekey/>
225
+ <port/>
226
+ <description/>
227
+ <inventory_link>0</inventory_link>
228
+ <applications>
229
+ <application>
230
+ <name>RabbitMQ</name>
231
+ </application>
232
+ </applications>
233
+ <valuemap/>
234
+ </item>
235
+ <item>
236
+ <name>Message Delivery Get Rate</name>
237
+ <type>2</type>
238
+ <snmp_community/>
239
+ <multiplier>0</multiplier>
240
+ <snmp_oid/>
241
+ <key>rabbitmq.message.deliver_get.rate</key>
242
+ <delay>0</delay>
243
+ <history>90</history>
244
+ <trends>365</trends>
245
+ <status>0</status>
246
+ <value_type>3</value_type>
247
+ <allowed_hosts/>
248
+ <units/>
249
+ <delta>0</delta>
250
+ <snmpv3_contextname/>
251
+ <snmpv3_securityname/>
252
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
253
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
254
+ <snmpv3_authpassphrase/>
255
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
256
+ <snmpv3_privpassphrase/>
257
+ <formula>1</formula>
258
+ <delay_flex/>
259
+ <params/>
260
+ <ipmi_sensor/>
261
+ <data_type>0</data_type>
262
+ <authtype>0</authtype>
263
+ <username/>
264
+ <password/>
265
+ <publickey/>
266
+ <privatekey/>
267
+ <port/>
268
+ <description/>
269
+ <inventory_link>0</inventory_link>
270
+ <applications>
271
+ <application>
272
+ <name>RabbitMQ</name>
273
+ </application>
274
+ </applications>
275
+ <valuemap/>
276
+ </item>
277
+ <item>
278
+ <name>Message Delivery Get Total</name>
279
+ <type>2</type>
280
+ <snmp_community/>
281
+ <multiplier>0</multiplier>
282
+ <snmp_oid/>
283
+ <key>rabbitmq.message.deliver_get</key>
284
+ <delay>0</delay>
285
+ <history>90</history>
286
+ <trends>365</trends>
287
+ <status>0</status>
288
+ <value_type>3</value_type>
289
+ <allowed_hosts/>
290
+ <units/>
291
+ <delta>0</delta>
292
+ <snmpv3_contextname/>
293
+ <snmpv3_securityname/>
294
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
295
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
296
+ <snmpv3_authpassphrase/>
297
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
298
+ <snmpv3_privpassphrase/>
299
+ <formula>1</formula>
300
+ <delay_flex/>
301
+ <params/>
302
+ <ipmi_sensor/>
303
+ <data_type>0</data_type>
304
+ <authtype>0</authtype>
305
+ <username/>
306
+ <password/>
307
+ <publickey/>
308
+ <privatekey/>
309
+ <port/>
310
+ <description/>
311
+ <inventory_link>0</inventory_link>
312
+ <applications>
313
+ <application>
314
+ <name>RabbitMQ</name>
315
+ </application>
316
+ </applications>
317
+ <valuemap/>
318
+ </item>
319
+ <item>
320
+ <name>Message Get Rate</name>
321
+ <type>2</type>
322
+ <snmp_community/>
323
+ <multiplier>0</multiplier>
324
+ <snmp_oid/>
325
+ <key>rabbitmq.message.get.rate</key>
326
+ <delay>0</delay>
327
+ <history>90</history>
328
+ <trends>365</trends>
329
+ <status>0</status>
330
+ <value_type>3</value_type>
331
+ <allowed_hosts/>
332
+ <units/>
333
+ <delta>0</delta>
334
+ <snmpv3_contextname/>
335
+ <snmpv3_securityname/>
336
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
337
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
338
+ <snmpv3_authpassphrase/>
339
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
340
+ <snmpv3_privpassphrase/>
341
+ <formula>1</formula>
342
+ <delay_flex/>
343
+ <params/>
344
+ <ipmi_sensor/>
345
+ <data_type>0</data_type>
346
+ <authtype>0</authtype>
347
+ <username/>
348
+ <password/>
349
+ <publickey/>
350
+ <privatekey/>
351
+ <port/>
352
+ <description/>
353
+ <inventory_link>0</inventory_link>
354
+ <applications>
355
+ <application>
356
+ <name>RabbitMQ</name>
357
+ </application>
358
+ </applications>
359
+ <valuemap/>
360
+ </item>
361
+ <item>
362
+ <name>Message Get Total</name>
363
+ <type>2</type>
364
+ <snmp_community/>
365
+ <multiplier>0</multiplier>
366
+ <snmp_oid/>
367
+ <key>rabbitmq.message.get</key>
368
+ <delay>0</delay>
369
+ <history>90</history>
370
+ <trends>365</trends>
371
+ <status>0</status>
372
+ <value_type>3</value_type>
373
+ <allowed_hosts/>
374
+ <units/>
375
+ <delta>0</delta>
376
+ <snmpv3_contextname/>
377
+ <snmpv3_securityname/>
378
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
379
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
380
+ <snmpv3_authpassphrase/>
381
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
382
+ <snmpv3_privpassphrase/>
383
+ <formula>1</formula>
384
+ <delay_flex/>
385
+ <params/>
386
+ <ipmi_sensor/>
387
+ <data_type>0</data_type>
388
+ <authtype>0</authtype>
389
+ <username/>
390
+ <password/>
391
+ <publickey/>
392
+ <privatekey/>
393
+ <port/>
394
+ <description/>
395
+ <inventory_link>0</inventory_link>
396
+ <applications>
397
+ <application>
398
+ <name>RabbitMQ</name>
399
+ </application>
400
+ </applications>
401
+ <valuemap/>
402
+ </item>
403
+ <item>
404
+ <name>Message Publish Rate</name>
405
+ <type>2</type>
406
+ <snmp_community/>
407
+ <multiplier>0</multiplier>
408
+ <snmp_oid/>
409
+ <key>rabbitmq.message.publish.rate</key>
410
+ <delay>0</delay>
411
+ <history>90</history>
412
+ <trends>365</trends>
413
+ <status>0</status>
414
+ <value_type>3</value_type>
415
+ <allowed_hosts/>
416
+ <units/>
417
+ <delta>0</delta>
418
+ <snmpv3_contextname/>
419
+ <snmpv3_securityname/>
420
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
421
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
422
+ <snmpv3_authpassphrase/>
423
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
424
+ <snmpv3_privpassphrase/>
425
+ <formula>1</formula>
426
+ <delay_flex/>
427
+ <params/>
428
+ <ipmi_sensor/>
429
+ <data_type>0</data_type>
430
+ <authtype>0</authtype>
431
+ <username/>
432
+ <password/>
433
+ <publickey/>
434
+ <privatekey/>
435
+ <port/>
436
+ <description/>
437
+ <inventory_link>0</inventory_link>
438
+ <applications>
439
+ <application>
440
+ <name>RabbitMQ</name>
441
+ </application>
442
+ </applications>
443
+ <valuemap/>
444
+ </item>
445
+ <item>
446
+ <name>Message Publish Total</name>
447
+ <type>2</type>
448
+ <snmp_community/>
449
+ <multiplier>0</multiplier>
450
+ <snmp_oid/>
451
+ <key>rabbitmq.message.publish</key>
452
+ <delay>0</delay>
453
+ <history>90</history>
454
+ <trends>365</trends>
455
+ <status>0</status>
456
+ <value_type>3</value_type>
457
+ <allowed_hosts/>
458
+ <units/>
459
+ <delta>0</delta>
460
+ <snmpv3_contextname/>
461
+ <snmpv3_securityname/>
462
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
463
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
464
+ <snmpv3_authpassphrase/>
465
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
466
+ <snmpv3_privpassphrase/>
467
+ <formula>1</formula>
468
+ <delay_flex/>
469
+ <params/>
470
+ <ipmi_sensor/>
471
+ <data_type>0</data_type>
472
+ <authtype>0</authtype>
473
+ <username/>
474
+ <password/>
475
+ <publickey/>
476
+ <privatekey/>
477
+ <port/>
478
+ <description/>
479
+ <inventory_link>0</inventory_link>
480
+ <applications>
481
+ <application>
482
+ <name>RabbitMQ</name>
483
+ </application>
484
+ </applications>
485
+ <valuemap/>
486
+ </item>
487
+ <item>
488
+ <name>Message Redeliver Rate</name>
489
+ <type>2</type>
490
+ <snmp_community/>
491
+ <multiplier>0</multiplier>
492
+ <snmp_oid/>
493
+ <key>rabbitmq.message.redeliver.rate</key>
494
+ <delay>0</delay>
495
+ <history>90</history>
496
+ <trends>365</trends>
497
+ <status>0</status>
498
+ <value_type>3</value_type>
499
+ <allowed_hosts/>
500
+ <units/>
501
+ <delta>0</delta>
502
+ <snmpv3_contextname/>
503
+ <snmpv3_securityname/>
504
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
505
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
506
+ <snmpv3_authpassphrase/>
507
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
508
+ <snmpv3_privpassphrase/>
509
+ <formula>1</formula>
510
+ <delay_flex/>
511
+ <params/>
512
+ <ipmi_sensor/>
513
+ <data_type>0</data_type>
514
+ <authtype>0</authtype>
515
+ <username/>
516
+ <password/>
517
+ <publickey/>
518
+ <privatekey/>
519
+ <port/>
520
+ <description/>
521
+ <inventory_link>0</inventory_link>
522
+ <applications>
523
+ <application>
524
+ <name>RabbitMQ</name>
525
+ </application>
526
+ </applications>
527
+ <valuemap/>
528
+ </item>
529
+ <item>
530
+ <name>Message Redeliver Total</name>
531
+ <type>2</type>
532
+ <snmp_community/>
533
+ <multiplier>0</multiplier>
534
+ <snmp_oid/>
535
+ <key>rabbitmq.message.redeliver</key>
536
+ <delay>0</delay>
537
+ <history>90</history>
538
+ <trends>365</trends>
539
+ <status>0</status>
540
+ <value_type>3</value_type>
541
+ <allowed_hosts/>
542
+ <units/>
543
+ <delta>0</delta>
544
+ <snmpv3_contextname/>
545
+ <snmpv3_securityname/>
546
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
547
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
548
+ <snmpv3_authpassphrase/>
549
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
550
+ <snmpv3_privpassphrase/>
551
+ <formula>1</formula>
552
+ <delay_flex/>
553
+ <params/>
554
+ <ipmi_sensor/>
555
+ <data_type>0</data_type>
556
+ <authtype>0</authtype>
557
+ <username/>
558
+ <password/>
559
+ <publickey/>
560
+ <privatekey/>
561
+ <port/>
562
+ <description/>
563
+ <inventory_link>0</inventory_link>
564
+ <applications>
565
+ <application>
566
+ <name>RabbitMQ</name>
567
+ </application>
568
+ </applications>
569
+ <valuemap/>
570
+ </item>
571
+ <item>
572
+ <name>Queue Total Messages</name>
573
+ <type>2</type>
574
+ <snmp_community/>
575
+ <multiplier>0</multiplier>
576
+ <snmp_oid/>
577
+ <key>rabbitmq.queue.total.messages</key>
578
+ <delay>0</delay>
579
+ <history>90</history>
580
+ <trends>365</trends>
581
+ <status>0</status>
582
+ <value_type>3</value_type>
583
+ <allowed_hosts/>
584
+ <units/>
585
+ <delta>0</delta>
586
+ <snmpv3_contextname/>
587
+ <snmpv3_securityname/>
588
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
589
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
590
+ <snmpv3_authpassphrase/>
591
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
592
+ <snmpv3_privpassphrase/>
593
+ <formula>1</formula>
594
+ <delay_flex/>
595
+ <params/>
596
+ <ipmi_sensor/>
597
+ <data_type>0</data_type>
598
+ <authtype>0</authtype>
599
+ <username/>
600
+ <password/>
601
+ <publickey/>
602
+ <privatekey/>
603
+ <port/>
604
+ <description/>
605
+ <inventory_link>0</inventory_link>
606
+ <applications>
607
+ <application>
608
+ <name>RabbitMQ</name>
609
+ </application>
610
+ </applications>
611
+ <valuemap/>
612
+ </item>
613
+ <item>
614
+ <name>Queue Total Messages Ready</name>
615
+ <type>2</type>
616
+ <snmp_community/>
617
+ <multiplier>0</multiplier>
618
+ <snmp_oid/>
619
+ <key>rabbitmq.queue.total.messages_ready</key>
620
+ <delay>0</delay>
621
+ <history>90</history>
622
+ <trends>365</trends>
623
+ <status>0</status>
624
+ <value_type>3</value_type>
625
+ <allowed_hosts/>
626
+ <units/>
627
+ <delta>0</delta>
628
+ <snmpv3_contextname/>
629
+ <snmpv3_securityname/>
630
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
631
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
632
+ <snmpv3_authpassphrase/>
633
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
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>RabbitMQ</name>
651
+ </application>
652
+ </applications>
653
+ <valuemap/>
654
+ </item>
655
+ <item>
656
+ <name>Queue Total Messages Unacknowledged</name>
657
+ <type>2</type>
658
+ <snmp_community/>
659
+ <multiplier>0</multiplier>
660
+ <snmp_oid/>
661
+ <key>rabbitmq.queue.total.messages_unacknowledged</key>
662
+ <delay>0</delay>
663
+ <history>90</history>
664
+ <trends>365</trends>
665
+ <status>0</status>
666
+ <value_type>3</value_type>
667
+ <allowed_hosts/>
668
+ <units/>
669
+ <delta>0</delta>
670
+ <snmpv3_contextname/>
671
+ <snmpv3_securityname/>
672
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
673
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
674
+ <snmpv3_authpassphrase/>
675
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
676
+ <snmpv3_privpassphrase/>
677
+ <formula>1</formula>
678
+ <delay_flex/>
679
+ <params/>
680
+ <ipmi_sensor/>
681
+ <data_type>0</data_type>
682
+ <authtype>0</authtype>
683
+ <username/>
684
+ <password/>
685
+ <publickey/>
686
+ <privatekey/>
687
+ <port/>
688
+ <description/>
689
+ <inventory_link>0</inventory_link>
690
+ <applications>
691
+ <application>
692
+ <name>RabbitMQ</name>
693
+ </application>
694
+ </applications>
695
+ <valuemap/>
696
+ </item>
697
+ <item>
698
+ <name>RabbitMQ Version</name>
699
+ <type>2</type>
700
+ <snmp_community/>
701
+ <multiplier>0</multiplier>
702
+ <snmp_oid/>
703
+ <key>rabbitmq.version</key>
704
+ <delay>0</delay>
705
+ <history>90</history>
706
+ <trends>365</trends>
707
+ <status>0</status>
708
+ <value_type>4</value_type>
709
+ <allowed_hosts/>
710
+ <units/>
711
+ <delta>0</delta>
712
+ <snmpv3_contextname/>
713
+ <snmpv3_securityname/>
714
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
715
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
716
+ <snmpv3_authpassphrase/>
717
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
718
+ <snmpv3_privpassphrase/>
719
+ <formula>1</formula>
720
+ <delay_flex/>
721
+ <params/>
722
+ <ipmi_sensor/>
723
+ <data_type>0</data_type>
724
+ <authtype>0</authtype>
725
+ <username/>
726
+ <password/>
727
+ <publickey/>
728
+ <privatekey/>
729
+ <port/>
730
+ <description/>
731
+ <inventory_link>0</inventory_link>
732
+ <applications>
733
+ <application>
734
+ <name>RabbitMQ</name>
735
+ </application>
736
+ </applications>
737
+ <valuemap/>
738
+ </item>
739
+ <item>
740
+ <name>Total Channels</name>
741
+ <type>2</type>
742
+ <snmp_community/>
743
+ <multiplier>0</multiplier>
744
+ <snmp_oid/>
745
+ <key>rabbitmq.total.channels</key>
746
+ <delay>0</delay>
747
+ <history>90</history>
748
+ <trends>365</trends>
749
+ <status>0</status>
750
+ <value_type>3</value_type>
751
+ <allowed_hosts/>
752
+ <units/>
753
+ <delta>0</delta>
754
+ <snmpv3_contextname/>
755
+ <snmpv3_securityname/>
756
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
757
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
758
+ <snmpv3_authpassphrase/>
759
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
760
+ <snmpv3_privpassphrase/>
761
+ <formula>1</formula>
762
+ <delay_flex/>
763
+ <params/>
764
+ <ipmi_sensor/>
765
+ <data_type>0</data_type>
766
+ <authtype>0</authtype>
767
+ <username/>
768
+ <password/>
769
+ <publickey/>
770
+ <privatekey/>
771
+ <port/>
772
+ <description/>
773
+ <inventory_link>0</inventory_link>
774
+ <applications>
775
+ <application>
776
+ <name>RabbitMQ</name>
777
+ </application>
778
+ </applications>
779
+ <valuemap/>
780
+ </item>
781
+ <item>
782
+ <name>Total Connections</name>
783
+ <type>2</type>
784
+ <snmp_community/>
785
+ <multiplier>0</multiplier>
786
+ <snmp_oid/>
787
+ <key>rabbitmq.total.connections</key>
788
+ <delay>0</delay>
789
+ <history>90</history>
790
+ <trends>365</trends>
791
+ <status>0</status>
792
+ <value_type>3</value_type>
793
+ <allowed_hosts/>
794
+ <units/>
795
+ <delta>0</delta>
796
+ <snmpv3_contextname/>
797
+ <snmpv3_securityname/>
798
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
799
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
800
+ <snmpv3_authpassphrase/>
801
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
802
+ <snmpv3_privpassphrase/>
803
+ <formula>1</formula>
804
+ <delay_flex/>
805
+ <params/>
806
+ <ipmi_sensor/>
807
+ <data_type>0</data_type>
808
+ <authtype>0</authtype>
809
+ <username/>
810
+ <password/>
811
+ <publickey/>
812
+ <privatekey/>
813
+ <port/>
814
+ <description/>
815
+ <inventory_link>0</inventory_link>
816
+ <applications>
817
+ <application>
818
+ <name>RabbitMQ</name>
819
+ </application>
820
+ </applications>
821
+ <valuemap/>
822
+ </item>
823
+ <item>
824
+ <name>Total Consumers</name>
825
+ <type>2</type>
826
+ <snmp_community/>
827
+ <multiplier>0</multiplier>
828
+ <snmp_oid/>
829
+ <key>rabbitmq.total.consumers</key>
830
+ <delay>0</delay>
831
+ <history>90</history>
832
+ <trends>365</trends>
833
+ <status>0</status>
834
+ <value_type>3</value_type>
835
+ <allowed_hosts/>
836
+ <units/>
837
+ <delta>0</delta>
838
+ <snmpv3_contextname/>
839
+ <snmpv3_securityname/>
840
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
841
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
842
+ <snmpv3_authpassphrase/>
843
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
844
+ <snmpv3_privpassphrase/>
845
+ <formula>1</formula>
846
+ <delay_flex/>
847
+ <params/>
848
+ <ipmi_sensor/>
849
+ <data_type>0</data_type>
850
+ <authtype>0</authtype>
851
+ <username/>
852
+ <password/>
853
+ <publickey/>
854
+ <privatekey/>
855
+ <port/>
856
+ <description/>
857
+ <inventory_link>0</inventory_link>
858
+ <applications>
859
+ <application>
860
+ <name>RabbitMQ</name>
861
+ </application>
862
+ </applications>
863
+ <valuemap/>
864
+ </item>
865
+ <item>
866
+ <name>Total Exchanges</name>
867
+ <type>2</type>
868
+ <snmp_community/>
869
+ <multiplier>0</multiplier>
870
+ <snmp_oid/>
871
+ <key>rabbitmq.total.exchanges</key>
872
+ <delay>0</delay>
873
+ <history>90</history>
874
+ <trends>365</trends>
875
+ <status>0</status>
876
+ <value_type>3</value_type>
877
+ <allowed_hosts/>
878
+ <units/>
879
+ <delta>0</delta>
880
+ <snmpv3_contextname/>
881
+ <snmpv3_securityname/>
882
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
883
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
884
+ <snmpv3_authpassphrase/>
885
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
886
+ <snmpv3_privpassphrase/>
887
+ <formula>1</formula>
888
+ <delay_flex/>
889
+ <params/>
890
+ <ipmi_sensor/>
891
+ <data_type>0</data_type>
892
+ <authtype>0</authtype>
893
+ <username/>
894
+ <password/>
895
+ <publickey/>
896
+ <privatekey/>
897
+ <port/>
898
+ <description/>
899
+ <inventory_link>0</inventory_link>
900
+ <applications>
901
+ <application>
902
+ <name>RabbitMQ</name>
903
+ </application>
904
+ </applications>
905
+ <valuemap/>
906
+ </item>
907
+ <item>
908
+ <name>Total Listeners</name>
909
+ <type>2</type>
910
+ <snmp_community/>
911
+ <multiplier>0</multiplier>
912
+ <snmp_oid/>
913
+ <key>rabbitmq.total.listeners</key>
914
+ <delay>0</delay>
915
+ <history>90</history>
916
+ <trends>365</trends>
917
+ <status>0</status>
918
+ <value_type>3</value_type>
919
+ <allowed_hosts/>
920
+ <units/>
921
+ <delta>0</delta>
922
+ <snmpv3_contextname/>
923
+ <snmpv3_securityname/>
924
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
925
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
926
+ <snmpv3_authpassphrase/>
927
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
928
+ <snmpv3_privpassphrase/>
929
+ <formula>1</formula>
930
+ <delay_flex/>
931
+ <params/>
932
+ <ipmi_sensor/>
933
+ <data_type>0</data_type>
934
+ <authtype>0</authtype>
935
+ <username/>
936
+ <password/>
937
+ <publickey/>
938
+ <privatekey/>
939
+ <port/>
940
+ <description/>
941
+ <inventory_link>0</inventory_link>
942
+ <applications>
943
+ <application>
944
+ <name>RabbitMQ</name>
945
+ </application>
946
+ </applications>
947
+ <valuemap/>
948
+ </item>
949
+ <item>
950
+ <name>Total Queues</name>
951
+ <type>2</type>
952
+ <snmp_community/>
953
+ <multiplier>0</multiplier>
954
+ <snmp_oid/>
955
+ <key>rabbitmq.total.queues</key>
956
+ <delay>0</delay>
957
+ <history>90</history>
958
+ <trends>365</trends>
959
+ <status>0</status>
960
+ <value_type>3</value_type>
961
+ <allowed_hosts/>
962
+ <units/>
963
+ <delta>0</delta>
964
+ <snmpv3_contextname/>
965
+ <snmpv3_securityname/>
966
+ <snmpv3_securitylevel>0</snmpv3_securitylevel>
967
+ <snmpv3_authprotocol>0</snmpv3_authprotocol>
968
+ <snmpv3_authpassphrase/>
969
+ <snmpv3_privprotocol>0</snmpv3_privprotocol>
970
+ <snmpv3_privpassphrase/>
971
+ <formula>1</formula>
972
+ <delay_flex/>
973
+ <params/>
974
+ <ipmi_sensor/>
975
+ <data_type>0</data_type>
976
+ <authtype>0</authtype>
977
+ <username/>
978
+ <password/>
979
+ <publickey/>
980
+ <privatekey/>
981
+ <port/>
982
+ <description/>
983
+ <inventory_link>0</inventory_link>
984
+ <applications>
985
+ <application>
986
+ <name>RabbitMQ</name>
987
+ </application>
988
+ </applications>
989
+ <valuemap/>
990
+ </item>
991
+ </items>
992
+ <discovery_rules/>
993
+ <macros/>
994
+ <templates/>
995
+ <screens/>
996
+ </template>
997
+ </templates>
998
+ <triggers>
999
+ <trigger>
1000
+ <expression>{RabbitMQ:rabbitmq.queue.total.messages_unacknowledged.last(0)}&gt;10</expression>
1001
+ <name>Message Unack Rate High</name>
1002
+ <url/>
1003
+ <status>0</status>
1004
+ <priority>4</priority>
1005
+ <description/>
1006
+ <type>0</type>
1007
+ <dependencies/>
1008
+ </trigger>
1009
+ <trigger>
1010
+ <expression>{RabbitMQ:rabbitmq.total.exchanges.nodata(300)}=1</expression>
1011
+ <name>No Data Received in 5 minutes</name>
1012
+ <url/>
1013
+ <status>0</status>
1014
+ <priority>3</priority>
1015
+ <description/>
1016
+ <type>0</type>
1017
+ <dependencies/>
1018
+ </trigger>
1019
+ </triggers>
1020
+ <graphs>
1021
+ <graph>
1022
+ <name>RabbitMQ Queues</name>
1023
+ <width>900</width>
1024
+ <height>200</height>
1025
+ <yaxismin>0.0000</yaxismin>
1026
+ <yaxismax>100.0000</yaxismax>
1027
+ <show_work_period>1</show_work_period>
1028
+ <show_triggers>1</show_triggers>
1029
+ <type>1</type>
1030
+ <show_legend>1</show_legend>
1031
+ <show_3d>0</show_3d>
1032
+ <percent_left>0.0000</percent_left>
1033
+ <percent_right>0.0000</percent_right>
1034
+ <ymin_type_1>1</ymin_type_1>
1035
+ <ymax_type_1>0</ymax_type_1>
1036
+ <ymin_item_1>0</ymin_item_1>
1037
+ <ymax_item_1>0</ymax_item_1>
1038
+ <graph_items>
1039
+ <graph_item>
1040
+ <sortorder>0</sortorder>
1041
+ <drawtype>2</drawtype>
1042
+ <color>00CC00</color>
1043
+ <yaxisside>0</yaxisside>
1044
+ <calc_fnc>2</calc_fnc>
1045
+ <type>0</type>
1046
+ <item>
1047
+ <host>RabbitMQ</host>
1048
+ <key>rabbitmq.queue.total.messages_ready</key>
1049
+ </item>
1050
+ </graph_item>
1051
+ <graph_item>
1052
+ <sortorder>1</sortorder>
1053
+ <drawtype>2</drawtype>
1054
+ <color>BB0000</color>
1055
+ <yaxisside>0</yaxisside>
1056
+ <calc_fnc>2</calc_fnc>
1057
+ <type>0</type>
1058
+ <item>
1059
+ <host>RabbitMQ</host>
1060
+ <key>rabbitmq.queue.total.messages_unacknowledged</key>
1061
+ </item>
1062
+ </graph_item>
1063
+ </graph_items>
1064
+ </graph>
1065
+ <graph>
1066
+ <name>RabbitMQ Rates</name>
1067
+ <width>900</width>
1068
+ <height>200</height>
1069
+ <yaxismin>0.0000</yaxismin>
1070
+ <yaxismax>100.0000</yaxismax>
1071
+ <show_work_period>1</show_work_period>
1072
+ <show_triggers>1</show_triggers>
1073
+ <type>0</type>
1074
+ <show_legend>1</show_legend>
1075
+ <show_3d>0</show_3d>
1076
+ <percent_left>0.0000</percent_left>
1077
+ <percent_right>0.0000</percent_right>
1078
+ <ymin_type_1>0</ymin_type_1>
1079
+ <ymax_type_1>0</ymax_type_1>
1080
+ <ymin_item_1>0</ymin_item_1>
1081
+ <ymax_item_1>0</ymax_item_1>
1082
+ <graph_items>
1083
+ <graph_item>
1084
+ <sortorder>0</sortorder>
1085
+ <drawtype>0</drawtype>
1086
+ <color>C80000</color>
1087
+ <yaxisside>0</yaxisside>
1088
+ <calc_fnc>2</calc_fnc>
1089
+ <type>0</type>
1090
+ <item>
1091
+ <host>RabbitMQ</host>
1092
+ <key>rabbitmq.message.ack.rate</key>
1093
+ </item>
1094
+ </graph_item>
1095
+ <graph_item>
1096
+ <sortorder>1</sortorder>
1097
+ <drawtype>0</drawtype>
1098
+ <color>00C800</color>
1099
+ <yaxisside>0</yaxisside>
1100
+ <calc_fnc>2</calc_fnc>
1101
+ <type>0</type>
1102
+ <item>
1103
+ <host>RabbitMQ</host>
1104
+ <key>rabbitmq.message.deliver.rate</key>
1105
+ </item>
1106
+ </graph_item>
1107
+ <graph_item>
1108
+ <sortorder>2</sortorder>
1109
+ <drawtype>0</drawtype>
1110
+ <color>0000C8</color>
1111
+ <yaxisside>0</yaxisside>
1112
+ <calc_fnc>2</calc_fnc>
1113
+ <type>0</type>
1114
+ <item>
1115
+ <host>RabbitMQ</host>
1116
+ <key>rabbitmq.message.deliver_get.rate</key>
1117
+ </item>
1118
+ </graph_item>
1119
+ <graph_item>
1120
+ <sortorder>3</sortorder>
1121
+ <drawtype>0</drawtype>
1122
+ <color>C800C8</color>
1123
+ <yaxisside>0</yaxisside>
1124
+ <calc_fnc>2</calc_fnc>
1125
+ <type>0</type>
1126
+ <item>
1127
+ <host>RabbitMQ</host>
1128
+ <key>rabbitmq.message.get.rate</key>
1129
+ </item>
1130
+ </graph_item>
1131
+ <graph_item>
1132
+ <sortorder>4</sortorder>
1133
+ <drawtype>0</drawtype>
1134
+ <color>00C8C8</color>
1135
+ <yaxisside>0</yaxisside>
1136
+ <calc_fnc>2</calc_fnc>
1137
+ <type>0</type>
1138
+ <item>
1139
+ <host>RabbitMQ</host>
1140
+ <key>rabbitmq.message.publish.rate</key>
1141
+ </item>
1142
+ </graph_item>
1143
+ <graph_item>
1144
+ <sortorder>5</sortorder>
1145
+ <drawtype>0</drawtype>
1146
+ <color>C8C800</color>
1147
+ <yaxisside>0</yaxisside>
1148
+ <calc_fnc>2</calc_fnc>
1149
+ <type>0</type>
1150
+ <item>
1151
+ <host>RabbitMQ</host>
1152
+ <key>rabbitmq.message.redeliver.rate</key>
1153
+ </item>
1154
+ </graph_item>
1155
+ </graph_items>
1156
+ </graph>
1157
+ <graph>
1158
+ <name>RabbitMQ Totals</name>
1159
+ <width>900</width>
1160
+ <height>200</height>
1161
+ <yaxismin>0.0000</yaxismin>
1162
+ <yaxismax>100.0000</yaxismax>
1163
+ <show_work_period>1</show_work_period>
1164
+ <show_triggers>1</show_triggers>
1165
+ <type>1</type>
1166
+ <show_legend>1</show_legend>
1167
+ <show_3d>0</show_3d>
1168
+ <percent_left>0.0000</percent_left>
1169
+ <percent_right>0.0000</percent_right>
1170
+ <ymin_type_1>1</ymin_type_1>
1171
+ <ymax_type_1>0</ymax_type_1>
1172
+ <ymin_item_1>0</ymin_item_1>
1173
+ <ymax_item_1>0</ymax_item_1>
1174
+ <graph_items>
1175
+ <graph_item>
1176
+ <sortorder>0</sortorder>
1177
+ <drawtype>0</drawtype>
1178
+ <color>6666FF</color>
1179
+ <yaxisside>0</yaxisside>
1180
+ <calc_fnc>2</calc_fnc>
1181
+ <type>0</type>
1182
+ <item>
1183
+ <host>RabbitMQ</host>
1184
+ <key>rabbitmq.total.connections</key>
1185
+ </item>
1186
+ </graph_item>
1187
+ <graph_item>
1188
+ <sortorder>1</sortorder>
1189
+ <drawtype>0</drawtype>
1190
+ <color>BBBB00</color>
1191
+ <yaxisside>0</yaxisside>
1192
+ <calc_fnc>2</calc_fnc>
1193
+ <type>0</type>
1194
+ <item>
1195
+ <host>RabbitMQ</host>
1196
+ <key>rabbitmq.total.consumers</key>
1197
+ </item>
1198
+ </graph_item>
1199
+ <graph_item>
1200
+ <sortorder>2</sortorder>
1201
+ <drawtype>0</drawtype>
1202
+ <color>00AAAA</color>
1203
+ <yaxisside>0</yaxisside>
1204
+ <calc_fnc>2</calc_fnc>
1205
+ <type>0</type>
1206
+ <item>
1207
+ <host>RabbitMQ</host>
1208
+ <key>rabbitmq.total.exchanges</key>
1209
+ </item>
1210
+ </graph_item>
1211
+ <graph_item>
1212
+ <sortorder>3</sortorder>
1213
+ <drawtype>0</drawtype>
1214
+ <color>99FF99</color>
1215
+ <yaxisside>0</yaxisside>
1216
+ <calc_fnc>2</calc_fnc>
1217
+ <type>0</type>
1218
+ <item>
1219
+ <host>RabbitMQ</host>
1220
+ <key>rabbitmq.total.listeners</key>
1221
+ </item>
1222
+ </graph_item>
1223
+ <graph_item>
1224
+ <sortorder>4</sortorder>
1225
+ <drawtype>0</drawtype>
1226
+ <color>FF9999</color>
1227
+ <yaxisside>0</yaxisside>
1228
+ <calc_fnc>2</calc_fnc>
1229
+ <type>0</type>
1230
+ <item>
1231
+ <host>RabbitMQ</host>
1232
+ <key>rabbitmq.total.queues</key>
1233
+ </item>
1234
+ </graph_item>
1235
+ </graph_items>
1236
+ </graph>
1237
+ <graph>
1238
+ <name>s. RabbitMQ Queues</name>
1239
+ <width>900</width>
1240
+ <height>200</height>
1241
+ <yaxismin>0.0000</yaxismin>
1242
+ <yaxismax>100.0000</yaxismax>
1243
+ <show_work_period>1</show_work_period>
1244
+ <show_triggers>1</show_triggers>
1245
+ <type>1</type>
1246
+ <show_legend>0</show_legend>
1247
+ <show_3d>0</show_3d>
1248
+ <percent_left>0.0000</percent_left>
1249
+ <percent_right>0.0000</percent_right>
1250
+ <ymin_type_1>1</ymin_type_1>
1251
+ <ymax_type_1>0</ymax_type_1>
1252
+ <ymin_item_1>0</ymin_item_1>
1253
+ <ymax_item_1>0</ymax_item_1>
1254
+ <graph_items>
1255
+ <graph_item>
1256
+ <sortorder>0</sortorder>
1257
+ <drawtype>2</drawtype>
1258
+ <color>009900</color>
1259
+ <yaxisside>0</yaxisside>
1260
+ <calc_fnc>2</calc_fnc>
1261
+ <type>0</type>
1262
+ <item>
1263
+ <host>RabbitMQ</host>
1264
+ <key>rabbitmq.queue.total.messages_ready</key>
1265
+ </item>
1266
+ </graph_item>
1267
+ <graph_item>
1268
+ <sortorder>1</sortorder>
1269
+ <drawtype>2</drawtype>
1270
+ <color>FF6666</color>
1271
+ <yaxisside>0</yaxisside>
1272
+ <calc_fnc>2</calc_fnc>
1273
+ <type>0</type>
1274
+ <item>
1275
+ <host>RabbitMQ</host>
1276
+ <key>rabbitmq.queue.total.messages_unacknowledged</key>
1277
+ </item>
1278
+ </graph_item>
1279
+ </graph_items>
1280
+ </graph>
1281
+ <graph>
1282
+ <name>s. RabbitMQ Rates</name>
1283
+ <width>900</width>
1284
+ <height>200</height>
1285
+ <yaxismin>0.0000</yaxismin>
1286
+ <yaxismax>100.0000</yaxismax>
1287
+ <show_work_period>1</show_work_period>
1288
+ <show_triggers>1</show_triggers>
1289
+ <type>0</type>
1290
+ <show_legend>0</show_legend>
1291
+ <show_3d>0</show_3d>
1292
+ <percent_left>0.0000</percent_left>
1293
+ <percent_right>0.0000</percent_right>
1294
+ <ymin_type_1>0</ymin_type_1>
1295
+ <ymax_type_1>0</ymax_type_1>
1296
+ <ymin_item_1>0</ymin_item_1>
1297
+ <ymax_item_1>0</ymax_item_1>
1298
+ <graph_items>
1299
+ <graph_item>
1300
+ <sortorder>0</sortorder>
1301
+ <drawtype>0</drawtype>
1302
+ <color>C80000</color>
1303
+ <yaxisside>0</yaxisside>
1304
+ <calc_fnc>2</calc_fnc>
1305
+ <type>0</type>
1306
+ <item>
1307
+ <host>RabbitMQ</host>
1308
+ <key>rabbitmq.message.ack.rate</key>
1309
+ </item>
1310
+ </graph_item>
1311
+ <graph_item>
1312
+ <sortorder>1</sortorder>
1313
+ <drawtype>0</drawtype>
1314
+ <color>00C800</color>
1315
+ <yaxisside>0</yaxisside>
1316
+ <calc_fnc>2</calc_fnc>
1317
+ <type>0</type>
1318
+ <item>
1319
+ <host>RabbitMQ</host>
1320
+ <key>rabbitmq.message.deliver.rate</key>
1321
+ </item>
1322
+ </graph_item>
1323
+ <graph_item>
1324
+ <sortorder>2</sortorder>
1325
+ <drawtype>0</drawtype>
1326
+ <color>0000C8</color>
1327
+ <yaxisside>0</yaxisside>
1328
+ <calc_fnc>2</calc_fnc>
1329
+ <type>0</type>
1330
+ <item>
1331
+ <host>RabbitMQ</host>
1332
+ <key>rabbitmq.message.deliver_get.rate</key>
1333
+ </item>
1334
+ </graph_item>
1335
+ <graph_item>
1336
+ <sortorder>3</sortorder>
1337
+ <drawtype>0</drawtype>
1338
+ <color>C800C8</color>
1339
+ <yaxisside>0</yaxisside>
1340
+ <calc_fnc>2</calc_fnc>
1341
+ <type>0</type>
1342
+ <item>
1343
+ <host>RabbitMQ</host>
1344
+ <key>rabbitmq.message.get.rate</key>
1345
+ </item>
1346
+ </graph_item>
1347
+ <graph_item>
1348
+ <sortorder>4</sortorder>
1349
+ <drawtype>0</drawtype>
1350
+ <color>00C8C8</color>
1351
+ <yaxisside>0</yaxisside>
1352
+ <calc_fnc>2</calc_fnc>
1353
+ <type>0</type>
1354
+ <item>
1355
+ <host>RabbitMQ</host>
1356
+ <key>rabbitmq.message.publish.rate</key>
1357
+ </item>
1358
+ </graph_item>
1359
+ <graph_item>
1360
+ <sortorder>5</sortorder>
1361
+ <drawtype>0</drawtype>
1362
+ <color>C8C800</color>
1363
+ <yaxisside>0</yaxisside>
1364
+ <calc_fnc>2</calc_fnc>
1365
+ <type>0</type>
1366
+ <item>
1367
+ <host>RabbitMQ</host>
1368
+ <key>rabbitmq.message.redeliver.rate</key>
1369
+ </item>
1370
+ </graph_item>
1371
+ </graph_items>
1372
+ </graph>
1373
+ <graph>
1374
+ <name>s. RabbitMQ Totals</name>
1375
+ <width>900</width>
1376
+ <height>200</height>
1377
+ <yaxismin>0.0000</yaxismin>
1378
+ <yaxismax>100.0000</yaxismax>
1379
+ <show_work_period>1</show_work_period>
1380
+ <show_triggers>1</show_triggers>
1381
+ <type>1</type>
1382
+ <show_legend>0</show_legend>
1383
+ <show_3d>0</show_3d>
1384
+ <percent_left>0.0000</percent_left>
1385
+ <percent_right>0.0000</percent_right>
1386
+ <ymin_type_1>1</ymin_type_1>
1387
+ <ymax_type_1>0</ymax_type_1>
1388
+ <ymin_item_1>0</ymin_item_1>
1389
+ <ymax_item_1>0</ymax_item_1>
1390
+ <graph_items>
1391
+ <graph_item>
1392
+ <sortorder>0</sortorder>
1393
+ <drawtype>0</drawtype>
1394
+ <color>6666FF</color>
1395
+ <yaxisside>0</yaxisside>
1396
+ <calc_fnc>2</calc_fnc>
1397
+ <type>0</type>
1398
+ <item>
1399
+ <host>RabbitMQ</host>
1400
+ <key>rabbitmq.total.connections</key>
1401
+ </item>
1402
+ </graph_item>
1403
+ <graph_item>
1404
+ <sortorder>1</sortorder>
1405
+ <drawtype>0</drawtype>
1406
+ <color>BBBB00</color>
1407
+ <yaxisside>0</yaxisside>
1408
+ <calc_fnc>2</calc_fnc>
1409
+ <type>0</type>
1410
+ <item>
1411
+ <host>RabbitMQ</host>
1412
+ <key>rabbitmq.total.consumers</key>
1413
+ </item>
1414
+ </graph_item>
1415
+ <graph_item>
1416
+ <sortorder>2</sortorder>
1417
+ <drawtype>0</drawtype>
1418
+ <color>00AAAA</color>
1419
+ <yaxisside>0</yaxisside>
1420
+ <calc_fnc>2</calc_fnc>
1421
+ <type>0</type>
1422
+ <item>
1423
+ <host>RabbitMQ</host>
1424
+ <key>rabbitmq.total.exchanges</key>
1425
+ </item>
1426
+ </graph_item>
1427
+ <graph_item>
1428
+ <sortorder>3</sortorder>
1429
+ <drawtype>0</drawtype>
1430
+ <color>99FF99</color>
1431
+ <yaxisside>0</yaxisside>
1432
+ <calc_fnc>2</calc_fnc>
1433
+ <type>0</type>
1434
+ <item>
1435
+ <host>RabbitMQ</host>
1436
+ <key>rabbitmq.total.listeners</key>
1437
+ </item>
1438
+ </graph_item>
1439
+ <graph_item>
1440
+ <sortorder>4</sortorder>
1441
+ <drawtype>0</drawtype>
1442
+ <color>FF9999</color>
1443
+ <yaxisside>0</yaxisside>
1444
+ <calc_fnc>2</calc_fnc>
1445
+ <type>0</type>
1446
+ <item>
1447
+ <host>RabbitMQ</host>
1448
+ <key>rabbitmq.total.queues</key>
1449
+ </item>
1450
+ </graph_item>
1451
+ </graph_items>
1452
+ </graph>
1453
+ </graphs>
1454
+ </zabbix_export>