mirror of https://github.com/apache/kafka.git
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:
parent
8e9869a777
commit
94d4fdeb28
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue