You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2011/07/20 22:02:58 UTC

svn commit: r1148925 - /activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java

Author: tabish
Date: Wed Jul 20 20:02:57 2011
New Revision: 1148925

URL: http://svn.apache.org/viewvc?rev=1148925&view=rev
Log:
Fix for https://issues.apache.org/jira/browse/AMQ-2971

Modified:
    activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java

Modified: activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java?rev=1148925&r1=1148924&r2=1148925&view=diff
==============================================================================
--- activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java (original)
+++ activemq/trunk/activemq-core/src/main/java/org/apache/activemq/broker/region/DestinationStatistics.java Wed Jul 20 20:02:57 2011
@@ -24,8 +24,8 @@ import org.apache.activemq.management.Ti
 
 /**
  * The J2EE Statistics for the a Destination.
- * 
- * 
+ *
+ *
  */
 public class DestinationStatistics extends StatsImpl {
 
@@ -47,19 +47,20 @@ public class DestinationStatistics exten
         dequeues = new CountStatisticImpl("dequeues", "The number of messages that have been acknowledged from the destination");
         inflight = new CountStatisticImpl("inflight", "The number of messages dispatched but awaiting acknowledgement");
         expired = new CountStatisticImpl("expired", "The number of messages that have expired");
-        
+
         consumers = new CountStatisticImpl("consumers", "The number of consumers that that are subscribing to messages from the destination");
         consumers.setDoReset(false);
         producers = new CountStatisticImpl("producers", "The number of producers that that are publishing messages to the destination");
         producers.setDoReset(false);
         messages = new CountStatisticImpl("messages", "The number of messages that that are being held by the destination");
+        messages.setDoReset(false);
         messagesCached = new PollCountStatisticImpl("messagesCached", "The number of messages that are held in the destination's memory cache");
         processTime = new TimeStatisticImpl("processTime", "information around length of time messages are held by a destination");
         addStatistic("enqueues", enqueues);
         addStatistic("dispatched", dispatched);
         addStatistic("dequeues", dequeues);
         addStatistic("inflight", inflight);
-        addStatistic("expired", expired);  
+        addStatistic("expired", expired);
         addStatistic("consumers", consumers);
         addStatistic("producers", producers);
         addStatistic("messages", messages);
@@ -74,7 +75,7 @@ public class DestinationStatistics exten
     public CountStatisticImpl getDequeues() {
         return dequeues;
     }
-    
+
     public CountStatisticImpl getInflight() {
         return inflight;
     }
@@ -86,7 +87,7 @@ public class DestinationStatistics exten
     public CountStatisticImpl getConsumers() {
         return consumers;
     }
-    
+
     public CountStatisticImpl getProducers() {
         return producers;
     }