I'll take a stab at it ;) EnqueueCount: The number of messages that have been written to the queue over the lifetime of the queue.
DequeueCount: The number of messages that have been successfully (i.e., they’ve been acknowledged from the consumer) read off the queue over the lifetime of the queue. DispatchCount: The number of messages that have been dispatched (sent) to the consumer over the lifetime of the queue. Note that dispatched messages may not have all been acknowledged. InFlightCount: The number of messages that have been dispatched and are currently awaiting acknowledgment from the consumer. So as this number decreases, the DequeueCount increases. QueueSize: The number of messages that currently reside in the queue. AverageEnqueueTime: On average, the amount of time (ms) that messages remained enqueued. Or average time it is taking the consumers to successfully process messages. MaxEnqueueTime: The maximum amount of time that messages remained enqueued. MinEnqueueTime: The minimum amount of time that messages remained enqueued. Joe Get a free ActiveMQ user guide @ http://www.ttmsolutions.com deadfolk wrote: > > Hi all, > > We are using several topics in out application, and while trying to > ascertain if we have problems, I have realised that I do not fully > understand the counts displayed in the web console, i.e. "Enqueue > counter", "Pendinding / Dispatched Queue size". I cannot seem to locate > any documentation for these figures. > > Could someone please point me in the right direction? > > Thanks, > > Matt > -- View this message in context: http://www.nabble.com/Topic-counts-explanation-tp19666846p19667717.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.