【发布时间】:2026-02-21 22:40:01
【问题描述】:
我是 Kafka 新手,我有三个节点的 Kafka 集群,有多个消费者和生产者。我想根据三个参数监控 Kafka 集群:
1.Topic wise monitoring - to get incoming rate of topic , lag in a topic, number of active consumers attached with the topic, number of partitions
2.Consumer based monitoring - the topic from which it is consuming,consumption speed. a number of messages consumed.
3.Message-Based Monitoring - topic name in which message is produced,and status of message i.e whether it's processed or pending.
我尝试了各种监控工具,例如 (KafkaOffsetMonitor,Burrow),但没有一个与我的用例相匹配。那么任何人都可以建议如何设置这种监控系统吗?是否有可用的 API 可以让我获得上述信息- 提到的细节
【问题讨论】:
标签: apache-kafka kafka-consumer-api kafka-producer-api