mirror of
https://github.com/cmur2/munin-rabbitmq.git
synced 2025-06-15 06:30:24 +02:00
Allow "." in queue names
This commit is contained in:
@ -71,4 +71,4 @@ fi
|
||||
|
||||
sudo rabbitmqctl list_queues -p $VHOST name memory | \
|
||||
grep -v "^Listing" | grep -v "done.$" | \
|
||||
perl -nle'($q, $s) = split; print("$q.value $s")'
|
||||
perl -nle'($q, $s) = split; $q =~ s/\./_/g; print("$q.value $s")'
|
||||
|
Reference in New Issue
Block a user