Repository: kafka Updated Branches: refs/heads/0.10.1 d9ea35e6d -> 378e92506
KAFKA-4252; Fix purgatory metric name in documentation Author: Rajini Sivaram <[email protected]> Reviewers: Jason Gustafson <[email protected]> Closes #1980 from rajinisivaram/KAFKA-4252 (cherry picked from commit 3c8925946ddfe7be8bea521c7d08a56aec756a2d) Signed-off-by: Jason Gustafson <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/378e9250 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/378e9250 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/378e9250 Branch: refs/heads/0.10.1 Commit: 378e92506ba86c0147f2ca15664edb6be56a8881 Parents: d9ea35e Author: Rajini Sivaram <[email protected]> Authored: Thu Oct 6 11:19:43 2016 -0700 Committer: Jason Gustafson <[email protected]> Committed: Thu Oct 6 11:20:50 2016 -0700 ---------------------------------------------------------------------- docs/ops.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/378e9250/docs/ops.html ---------------------------------------------------------------------- diff --git a/docs/ops.html b/docs/ops.html index 7565738..a65269a 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -695,12 +695,12 @@ We do graphing and alerting on the following metrics: </tr> <tr> <td>Requests waiting in the producer purgatory</td> - <td>kafka.server:type=ProducerRequestPurgatory,name=PurgatorySize</td> + <td>kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce</td> <td>non-zero if ack=-1 is used</td> </tr> <tr> <td>Requests waiting in the fetch purgatory</td> - <td>kafka.server:type=FetchRequestPurgatory,name=PurgatorySize</td> + <td>kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch</td> <td>size depends on fetch.wait.max.ms in the consumer</td> </tr> <tr>
