Last active
November 24, 2020 16:45
-
-
Save clarkdave/2f8c86ed836046498f9545e51a6122dc to your computer and use it in GitHub Desktop.
Monitoring thousands of queues with Datadog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'datadog/statsd' | |
require 'json' | |
statsd = Datadog::Statsd.new('localhost', 8125) | |
queue_fields = %w( | |
consumer_utilisation | |
consumers | |
memory | |
messages_ready | |
name | |
) | |
vhosts = JSON.parse( | |
`rabbitmqctl list_vhosts --formatter json`, | |
).map { |x| x['name'] } | |
vhosts.each do |vhost| | |
queues = JSON.parse( | |
`rabbitmqctl list_queues -p #{vhost} --local --formatter json #{queue_fields.join(' ')}`, | |
) | |
queues.each do |queue| | |
tags = [ | |
"vhost:#{vhost}", | |
"queue:#{queue['name']}", | |
] | |
statsd.gauge( | |
'rabbitmq.queue.messages_ready', | |
queue['messages_ready'], | |
tags: tags, | |
) | |
statsd.gauge( | |
'rabbitmq.queue.memory', | |
queue['memory'], | |
tags: tags, | |
) | |
statsd.gauge( | |
'rabbitmq.queue.consumers', | |
queue['consumers'], | |
tags: tags, | |
) | |
statsd.gauge( | |
'rabbitmq.queue.consumer_utilisation', | |
queue['consumer_utilisation'], | |
tags: tags, | |
) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment