Babak
Babak

Reputation: 3976

Get all queues of an exchange in 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?

Upvotes: 8

Views: 6219

Answers (1)

Gabriele Santomaggio
Gabriele Santomaggio

Reputation: 22712

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.

Upvotes: 3

Related Questions