Is it possible to view RabbitMQ message contents directly from the command line?
sudo rabbitmqctl list_queues lists the queues.
sudo rabbitmqctl list_queues
Is there any comma
If you want multiple messages from a queue, say 10 messages, the command to use is:
rabbitmqadmin get queue= ackmode=ack_requeue_true count=10
If you don't want the messages requeued, just change ackmode to ack_requeue_false.
ackmode
ack_requeue_false