This is an automated email from the ASF dual-hosted git repository.
mjsax pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 175d4914702 MINOR: add docs table entries for new metrics (#12934)
175d4914702 is described below
commit 175d49147021df47d9fe630a055dd221bdd56578
Author: Rohan <[email protected]>
AuthorDate: Fri Dec 9 10:28:31 2022 -0800
MINOR: add docs table entries for new metrics (#12934)
Adds docs for KIP-761.
Reviewers: Anurag Bandyopadhyay (@Anuragkillswitch), Matthias J. Sax
<[email protected]>
---
docs/ops.html | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/docs/ops.html b/docs/ops.html
index 19bb0bd56c1..c3ac673fdd1 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -2333,6 +2333,36 @@ These metrics are reported on both Controllers and
Brokers in a KRaft Cluster
<td>The total time an appender waits for space allocation in
nanoseconds.</td>
<td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
</tr>
+ <tr>
+ <td>flush-time-ns-total</td>
+ <td>The total time the Producer spent in Producer.flush in
nanoseconds.</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>txn-init-time-ns-total</td>
+ <td>The total time the Producer spent initializing transactions in
nanoseconds (for EOS).</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>txn-begin-time-ns-total</td>
+ <td>The total time the Producer spent in beginTransaction in
nanoseconds (for EOS).</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>txn-send-offsets-time-ns-total</td>
+ <td>The total time the Producer spent sending offsets to transactions
in nanoseconds (for EOS).</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>txn-commit-time-ns-total</td>
+ <td>The total time the Producer spent committing transactions in
nanoseconds (for EOS).</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>txn-abort-time-ns-total</td>
+ <td>The total time the Producer spent aborting transactions in
nanoseconds (for EOS).</td>
+ <td>kafka.producer:type=producer-metrics,client-id=([-.\w]+)</td>
+ </tr>
</tbody></table>
@@ -2372,6 +2402,16 @@ These metrics are reported on both Controllers and
Brokers in a KRaft Cluster
<td>The average fraction of time the consumer's poll() is idle as
opposed to waiting for the user code to process records.</td>
<td>kafka.consumer:type=consumer-metrics,client-id=([-.\w]+)</td>
</tr>
+ <tr>
+ <td>commited-time-ns-total</td>
+ <td>The total time the Consumer spent in committed in nanoseconds.</td>
+ <td>kafka.consumer:type=consumer-metrics,client-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>commit-sync-time-ns-total</td>
+ <td>The total time the Consumer spent committing offsets in
nanoseconds (for AOS).</td>
+ <td>kafka.consumer:type=consumer-metrics,client-id=([-.\w]+)</td>
+ </tr>
</tbody>
</table>
@@ -2720,6 +2760,16 @@ All of the following metrics have a recording level of
<code>info</code>:
<td>The total number of tasks closed.</td>
<td>kafka.streams:type=stream-thread-metrics,thread-id=([-.\w]+)</td>
</tr>
+ <tr>
+ <td>blocked-time-ns-total</td>
+ <td>The total time the thread spent blocked on kafka.</td>
+ <td>kafka.streams:type=stream-thread-metrics,thread-id=([-.\w]+)</td>
+ </tr>
+ <tr>
+ <td>thread-start-time</td>
+ <td>The time that the thread was started.</td>
+ <td>kafka.streams:type=stream-thread-metrics,thread-id=([-.\w]+)</td>
+ </tr>
</tbody>
</table>