You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2017/11/02 14:53:33 UTC

qpid-broker-j git commit: QPID-8000:[Broker-J] Improve buffer statistic descriptions

Repository: qpid-broker-j
Updated Branches:
  refs/heads/master 1b7892ce3 -> a0bc7d64e


QPID-8000:[Broker-J] Improve buffer statistic descriptions


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/a0bc7d64
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/a0bc7d64
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/a0bc7d64

Branch: refs/heads/master
Commit: a0bc7d64ef74bc29b2831eb504aed5fc89dae15a
Parents: 1b7892c
Author: Alex Rudyy <or...@apache.org>
Authored: Thu Nov 2 14:53:16 2017 +0000
Committer: Alex Rudyy <or...@apache.org>
Committed: Thu Nov 2 14:53:16 2017 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/qpid/server/model/Broker.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/a0bc7d64/broker-core/src/main/java/org/apache/qpid/server/model/Broker.java
----------------------------------------------------------------------
diff --git a/broker-core/src/main/java/org/apache/qpid/server/model/Broker.java b/broker-core/src/main/java/org/apache/qpid/server/model/Broker.java
index 3223f6d..baea7f7 100644
--- a/broker-core/src/main/java/org/apache/qpid/server/model/Broker.java
+++ b/broker-core/src/main/java/org/apache/qpid/server/model/Broker.java
@@ -280,14 +280,14 @@ public interface Broker<X extends Broker<X>> extends ConfiguredObject<X>, EventL
     @ManagedStatistic(statisticType = StatisticType.POINT_IN_TIME,
             units = StatisticUnit.COUNT,
             label = "Number of Buffers In-Use",
-            description = "Number of buffers currently in-use.")
+            description = "Number of direct memory buffers currently in-use.")
     long getNumberOfBuffersInUse();
 
     @SuppressWarnings("unused")
     @ManagedStatistic(statisticType = StatisticType.POINT_IN_TIME,
             units = StatisticUnit.COUNT,
             label = "Number of Pooled Buffers",
-            description = "Number of buffers currently in the pool.")
+            description = "Number of unused direct memory buffers currently in the pool.")
     long getNumberOfBuffersInPool();
 
     @ManagedOperation(nonModifying = true,


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org