Permalink
Cannot retrieve contributors at this time
executable file
8 lines (8 sloc)
248 Bytes
|
count=$(rabbitmqctl list_queues | grep sampleQueue | awk '{print $2}') |
|
if [[ -z $count || $count -eq 0 ]]; then |
|
echo "ERROR: sampleQueue does not exist or is empty" |
|
exit 1 |
|
else |
|
echo "OK: sampleQueue has $count message(s)" |
|
exit 0 |
|
fi |
You can’t perform that action at this time.
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.