You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mj...@apache.org on 2022/12/09 18:31:07 UTC

[kafka] branch 3.1 updated: MINOR: add docs table entries for new metrics (#12934)

This is an automated email from the ASF dual-hosted git repository.

mjsax pushed a commit to branch 3.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/3.1 by this push:
     new a28574865a5 MINOR: add docs table entries for new metrics (#12934)
a28574865a5 is described below

commit a28574865a501cb1e65fbbd6fb62ab72d6f4f8be
Author: Rohan <de...@gmail.com>
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 <ma...@confluent.io>
---
 docs/ops.html | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/docs/ops.html b/docs/ops.html
index b5d3bd58041..bd9e457620f 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -2097,6 +2097,36 @@ $ bin/kafka-acls.sh \
         <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>
 
@@ -2136,6 +2166,16 @@ $ bin/kafka-acls.sh \
         <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>
 
@@ -2484,6 +2524,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>