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/07/14 00:49:30 UTC

[kafka] branch 3.3 updated: KAFKA-14008: Add docs for Streams throughput metrics introduced in KIP-846 (#12377)

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

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


The following commit(s) were added to refs/heads/3.3 by this push:
     new 8e92551f42 KAFKA-14008: Add docs for Streams throughput metrics introduced in KIP-846 (#12377)
8e92551f42 is described below

commit 8e92551f4294098a1d01121ce1ca01f5ff2e0499
Author: Christo Lolov <lo...@amazon.com>
AuthorDate: Thu Jul 14 01:47:34 2022 +0100

    KAFKA-14008: Add docs for Streams throughput metrics introduced in KIP-846 (#12377)
    
    Reviewers: Walker Carlson <wc...@confluent.io>, Matthias J. Sax <ma...@confluent.io>
---
 docs/ops.html | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/docs/ops.html b/docs/ops.html
index 76fee9cc86..1854cf057c 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -2604,6 +2604,16 @@ active-process-ratio metrics which have a recording level of <code>info</code>:
         <th>Description</th>
         <th>Mbean name</th>
       </tr>
+      <tr>
+        <td>bytes-consumed-total</td>
+        <td>The total number of bytes consumed by a source processor node.</td>
+        <td>kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)</td>
+      </tr>
+      <tr>
+        <td>bytes-produced-total</td>
+        <td>The total number of bytes produced by a sink processor node.</td>
+        <td>kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)</td>
+      </tr>
       <tr>
         <td>process-rate</td>
         <td>The average number of records processed by a source processor node per second.</td>
@@ -2639,6 +2649,16 @@ active-process-ratio metrics which have a recording level of <code>info</code>:
         <td>The minimum end-to-end latency of a record, measured by comparing the record timestamp with the system time when it has been fully processed by the node.</td>
         <td>kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+)</td>
       </tr>
+      <tr>
+        <td>records-consumed-total</td>
+        <td>The total number of records consumed by a source processor node.</td>
+        <td>kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)</td>
+      </tr>
+      <tr>
+        <td>records-produced-total</td>
+        <td>The total number of records produced by a sink processor node.</td>
+        <td>kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)</td>
+      </tr>
       </tbody>
  </table>