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

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


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

commit b52d04d4ee936939bbf8fe8bb2a190b636a2e44c
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 e5b2fb8e946..b4d59ab4cfb 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>
 

Reply via email to