You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/inputs/rabbitmq/README.md
+25
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,13 @@ For additional details reference the [RabbitMQ Management HTTP Stats][management
48
48
## specified, metrics for all exchanges are gathered.
49
49
# exchanges = ["telegraf"]
50
50
51
+
## A list of federation upstreams to gather as the rabbitmq_federation measurement.
52
+
## If not specified, metrics for all federation upstreams are gathered.
53
+
## Federation link metrics will only be gathered for queues and exchanges
54
+
## whose non-federation metrics will be collected (e.g a queue excluded
55
+
## by the 'queue_name_exclude' option will also be excluded from federation).
56
+
# federation_upstreams = ["dataCentre2"]
57
+
51
58
## Queues to include and exclude. Globs accepted.
52
59
## Note that an empty array for both will include all queues
53
60
# queue_name_include = []
@@ -158,6 +165,16 @@ For additional details reference the [RabbitMQ Management HTTP Stats][management
158
165
- messages_publish_out (int, count)
159
166
- messages_publish_out_rate (int, messages per second)
160
167
168
+
- rabbitmq_federation
169
+
- acks_uncommitted (int, count)
170
+
- consumers (int, count)
171
+
- messages_unacknowledged (int, count)
172
+
- messages_uncommitted (int, count)
173
+
- messages_unconfirmed (int, count)
174
+
- messages_confirm (int, count)
175
+
- messages_publish (int, count)
176
+
- messages_return_unroutable (int, count)
177
+
161
178
### Tags:
162
179
163
180
- All measurements have the following tags:
@@ -187,6 +204,14 @@ For additional details reference the [RabbitMQ Management HTTP Stats][management
187
204
- durable
188
205
- auto_delete
189
206
207
+
- rabbitmq_federation
208
+
- url
209
+
- vhost
210
+
- type
211
+
- upstream
212
+
- local_entity
213
+
- upstream_entity
214
+
190
215
### Sample Queries:
191
216
192
217
Message rates for the entire node can be calculated from total message counts. For instance, to get the rate of messages published per minute, use this query:
0 commit comments