I have been looking at the new metrics in KAFKA-13945 (KIP-846). The documentation states that this metrics are procesor-node metrics
https://kafka.apache.org/documentation/#kafka_streams_node_monitoring *kafka.streams:type=stream-processor-node-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)* My observations is that the documentation should have a "stream-topic-metrics" section *kafka.streams:type=stream-topic-metrics,thread-id=([-.\w]+),task-id=([-.\w]+),processor-node-id=([-.\w]+),topic=([-.\w]+)* It looks like they are in TopicMetrics.java which was created for this effort. I believe this is just a minor document change adding a new section "Task Metrics" and placing these 4 metrics in this section with the given type. Thanks, -Neil