Created
February 12, 2025 05:00
-
-
Save cloudnull/ad74744cce99d957e63fd7548478d73c to your computer and use it in GitHub Desktop.
list rabbitmq queues that have a value greater than 0
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
rabbitmqctl list_vhosts --silent | xargs -i rabbitmqctl list_queues --vhost {} | awk '{if ($2>0) print $0}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment