Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get all queues of an exchange in RabbitMQ

Tags:

c#

rabbitmq

Using RabbitMQ.Client, I wonder how these are possible:

1- Get all queues names?

2- To what exchange a queue is bound?

3- How to get all queues which are bound to an exchange?

like image 984
Babak Avatar asked Jan 12 '15 18:01

Babak


Video Answer


1 Answers

No, but you can find all this information using RabbitMQ Management HTTP API

You have to enable the rabbtimq management plugin, using:

rabbitmq-plugins enable rabbitmq_management

After that you can use c# for execute HTTP calls.

like image 159
Gabriele Santomaggio Avatar answered Sep 29 '22 08:09

Gabriele Santomaggio