Does rabbitmq maintain a binding history to a exchange?

Viewed 26

I want to analyze the customers who are consuming the data from the topic exchange.
Is there a way to get the history of binding to this topic exchange in the last 30 days or max available time limit?

Suppose since last 1 week 20 services consumed from the topic.
Then I can get these 20 services from binding history.

Thanks

1 Answers

No, RabbitMQ does not support this feature out of the box, but you may be able to implement this yourself using the Event Exchange:

https://www.rabbitmq.com/event-exchange.html


NOTE: the RabbitMQ team monitors the rabbitmq-users mailing list and only sometimes answers questions on StackOverflow.

Related