You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2022/08/18 05:26:14 UTC

[activemq] branch main updated: [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq.git


The following commit(s) were added to refs/heads/main by this push:
     new 7159b4410 [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean
     new 6371bf15e Merge pull request #884 from jbonofre/AMQ-9049
7159b4410 is described below

commit 7159b4410baea64db104f1e06e70675446b71585
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Aug 16 16:43:02 2022 +0200

    [AMQ-9049] Mention dicarded messages in getTotalDequeueCount operation of BrokerViewMBean
---
 .../src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
index 4f80dc771..9c65c3b51 100644
--- a/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
+++ b/activemq-broker/src/main/java/org/apache/activemq/broker/jmx/BrokerViewMBean.java
@@ -92,7 +92,7 @@ public interface BrokerViewMBean extends Service {
     @MBeanInfo("Number of messages that have been sent to the broker.")
     long getTotalEnqueueCount();
 
-    @MBeanInfo("Number of messages that have been acknowledged on the broker.")
+    @MBeanInfo("Number of messages that have been acknowledged or discarded on the broker.")
     long getTotalDequeueCount();
 
     @MBeanInfo("Number of message consumers subscribed to destinations on the broker.")