Re: Message consumed count at broker end per unit time

2011-08-03 Thread kaustubh khasnis
Years! -Original Message- From: kaustubh khasnis [mailto:kaustubh.khas...@gmail.com] Sent: Friday, July 29, 2011 7:57 PM To: users@activemq.apache.org Subject: Message consumed count at broker end per unit time HI, Is there any way in activemq with which we can get count number

Re: Message consumed count at broker end per unit time

2011-08-02 Thread Gary Tully
The messageconsumed/messagedelivered are used for advisory support and their use is conditional on the destination policy attributes, advisoryForConsumed and advisoryForDelivery, by default they are false. On 1 August 2011 17:06, kaustubh khasnis kaustubh.khas...@gmail.com wrote: Hi, Thanks for

RE: Message consumed count at broker end per unit time

2011-08-02 Thread Yuvaraj Vanarase
). - Celebrating 10 Years! -Original Message- From: kaustubh khasnis [mailto:kaustubh.khas...@gmail.com] Sent: Friday, July 29, 2011 7:57 PM To: users@activemq.apache.org Subject: Message consumed count at broker end per unit time HI, Is there any way in activemq with which we can get count

Re: Message consumed count at broker end per unit time

2011-08-01 Thread Torsten Mielke
I am afraid there is no JMX MBean or other plugin that calculates the amount of msgs consumed/produced per second. It should not be too difficult to write a little tool yourself, you simply need to query the queues JMX properties at fixed intervals and then calculate the rate per second.

Re: Message consumed count at broker end per unit time

2011-08-01 Thread kaustubh khasnis
Hi, Thanks for the reply, I instead chose to write a broker plugin which will keep on calculating the stats and send to a central server. The counters I am increamenting in send method and postProcessDispatch method. somehow It looks like messageconsumed and messagedelivered methods are not being

Message consumed count at broker end per unit time

2011-07-29 Thread kaustubh khasnis
HI, Is there any way in activemq with which we can get count number of messages consumed/produced *per second/minute at the broker end*?? I know we can get the queue size in the broker at a given instance , but I need to know the aggregate count for a unit time. Thanks and regards Kaustubh