KAFKA-14008: Add docs for Streams throughput metrics introduced in KIP-846 (#12377)

Reviewers: Walker Carlson <wcarlson@confluent.io>, Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
Christo Lolov 2022-07-14 01:47:34 +01:00 committed by GitHub
parent 8e9869a777
commit 94d4fdeb28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -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>