What plugins are available for rabbitmq to analyze or view unacked messages? #12251
-
Requirement scenario: I want to see what these unacked messages are But I can't see it now, because the get messages function doesn't allow you to view unacked messages. But I think it's a normal requirement, for example, when there is a consumption block, I want to know which messages are causing the blockage |
Beta Was this translation helpful? Give feedback.
Answered by
michaelklishin
Sep 9, 2024
Replies: 1 comment
-
RabbitMQ does not provide metrics for individual messages, only totals per queue. If you want to know what messages are not being acknowledged, you have to introduce such metric in your own applications. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
michaelklishin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RabbitMQ does not provide metrics for individual messages, only totals per queue.
If you want to know what messages are not being acknowledged, you have to introduce such metric in your own applications.