diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-02 19:02:00 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-02 19:02:00 +0000 |
| commit | 3f0d68f921fc72a98b669b4a4e056e07cb3f052f (patch) | |
| tree | f073bfa1d01cb2aaf413c9fa92a3828b9bbdb88b /cpp/src/qpid/broker/QueueFlowLimit.cpp | |
| parent | c281f0b260c331f09f827641862d5b5df2a0dbe5 (diff) | |
| download | qpid-python-3f0d68f921fc72a98b669b4a4e056e07cb3f052f.tar.gz | |
QPID-3081: add statistic for queue flow control transitions
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1076329 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/QueueFlowLimit.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/QueueFlowLimit.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/QueueFlowLimit.cpp b/cpp/src/qpid/broker/QueueFlowLimit.cpp index a99c9de7df..21c7a2a737 100644 --- a/cpp/src/qpid/broker/QueueFlowLimit.cpp +++ b/cpp/src/qpid/broker/QueueFlowLimit.cpp @@ -138,8 +138,10 @@ void QueueFlowLimit::enqueued(const QueuedMessage& msg) flowStopped = true; QPID_LOG(info, "Queue \"" << queueName << "\": has reached " << flowStopSize << " enqueued bytes. Producer flow control activated." ); } - if (flowStopped && queueMgmtObj) + if (flowStopped && queueMgmtObj) { queueMgmtObj->set_flowStopped(true); + queueMgmtObj->inc_flowStoppedCount(); + } } /** @todo KAG: - REMOVE ONCE STABLE */ |
