You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2016/08/26 03:29:27 UTC

kafka git commit: MINOR: doc changes for QueueTimeMs JMX metrics.

Repository: kafka
Updated Branches:
  refs/heads/trunk dca63fc0a -> 20155ef87


MINOR: doc changes for QueueTimeMs JMX metrics.

Author: Alex Loddengaard <al...@gmail.com>

Reviewers: Gwen Shapira

Closes #1706 from alexlod/doc-queuetimems-jmx


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/20155ef8
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/20155ef8
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/20155ef8

Branch: refs/heads/trunk
Commit: 20155ef87e935a37779ee07d9605be9feabe2ad0
Parents: dca63fc
Author: Alex Loddengaard <al...@gmail.com>
Authored: Thu Aug 25 20:29:20 2016 -0700
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Thu Aug 25 20:29:20 2016 -0700

----------------------------------------------------------------------
 docs/ops.html | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/20155ef8/docs/ops.html
----------------------------------------------------------------------
diff --git a/docs/ops.html b/docs/ops.html
index a9161b7..a72a5b9 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -647,12 +647,12 @@ We do graphing and alerting on the following metrics:
       <td>broken into queue, local, remote and response send time</td>
     </tr>
     <tr>
-      <td>Time the request waiting in the request queue</td>
-       <td>kafka.network:type=RequestMetrics,name=QueueTimeMs,request={Produce|FetchConsumer|FetchFollower}</td>
+      <td>Time the request waits in the request queue</td>
+       <td>kafka.network:type=RequestMetrics,name=RequestQueueTimeMs,request={Produce|FetchConsumer|FetchFollower}</td>
       <td></td>
     </tr>
     <tr>
-      <td>Time the request being processed at the leader</td>
+      <td>Time the request is processed at the leader</td>
       <td>kafka.network:type=RequestMetrics,name=LocalTimeMs,request={Produce|FetchConsumer|FetchFollower}</td>
       <td></td>
     </tr>
@@ -662,6 +662,11 @@ We do graphing and alerting on the following metrics:
       <td>non-zero for produce requests when ack=-1</td>
     </tr>
     <tr>
+        <td>Time the request waits in the response queue</td>
+        <td>kafka.network:type=RequestMetrics,name=ResponseQueueTimeMs,request={Produce|FetchConsumer|FetchFollower}</td>
+        <td></td>
+    </tr>
+    <tr>
       <td>Time to send the response</td>
       <td>kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request={Produce|FetchConsumer|FetchFollower}</td>
       <td></td>