I read in ActiveMQ page , using JMX enabled we can monitor queue in activemq. How can we get notified if queue has messages (depth high) or service interval high in ActiveMQ. Without using any shell scripts in unix environment. Is it possible through Java progrms? If yes, give me some ideas to get this done.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
you can use Java via JMX APIs to periodically poll for queue stats (see this guide) for the notification approach, you'd need to use advisory messages to monitor messages delivered to a queue (see this guide) |
|||
|
|
|
For a JMX-free approach, you can also use the XML feed served by the activemq console page. The XML feed is hosted at This will have tags similar to this for each queue:
Just parse this XML in your code and you are good to go. |
|||
|
|

