Repository: kafka Updated Branches: refs/heads/trunk 80223b14e -> b38b74bb7
MINOR: Fix doc for producer throttle time metrics Author: Rajini Sivaram <[email protected]> Reviewers: Ismael Juma <[email protected]>, Jun Rao <[email protected]> Closes #3169 from rajinisivaram/MINOR-producer-metrics Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/b38b74bb Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/b38b74bb Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/b38b74bb Branch: refs/heads/trunk Commit: b38b74bb77e6d12e4ea74b51216bdc15e47dbbce Parents: 80223b1 Author: Rajini Sivaram <[email protected]> Authored: Tue May 30 16:35:25 2017 -0700 Committer: Jun Rao <[email protected]> Committed: Tue May 30 16:35:25 2017 -0700 ---------------------------------------------------------------------- docs/ops.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/b38b74bb/docs/ops.html ---------------------------------------------------------------------- diff --git a/docs/ops.html b/docs/ops.html index 23caeaf..46edb19 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -1103,6 +1103,16 @@ <td>The age in seconds of the current producer metadata being used.</td> <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td> </tr> + <tr> + <td>produce-throttle-time-max</td> + <td>The maximum time in ms a request was throttled by a broker.</td> + <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td> + </tr> + <tr> + <td>produce-throttle-time-avg</td> + <td>The average time in ms a request was throttled by a broker.</td> + <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td> + </tr> <tr> <td>record-send-rate</td> @@ -1129,16 +1139,6 @@ <td>The average per-second number of record sends that resulted in errors for a topic.</td> <td>kafka.producer:type=producer-topic-metrics,client-id=([-.\w]+),topic=([-.\w]+)</td> </tr> - <tr> - <td>produce-throttle-time-max</td> - <td>The maximum time in ms a request was throttled by a broker.</td> - <td>kafka.producer:type=producer-topic-metrics,client-id=([-.\w]+)</td> - </tr> - <tr> - <td>produce-throttle-time-avg</td> - <td>The average time in ms a request was throttled by a broker.</td> - <td>kafka.producer:type=producer-topic-metrics,client-id=([-.\w]+)</td> - </tr> </tbody></table>
