How to list producers in kafka

2019-04-06 05:53发布

Just as Kafka Offset Monitor can show a list of active consumers of a topic, is there any tool or command line interface or anything that can list the name of producers publishing on a given topic?

1条回答
迷人小祖宗
2楼-- · 2019-04-06 06:21

You can view the MBeans over JMX, perhaps using jvisualvm (though you'll have to add the mbean browser plugin to it). Once you connect to the broker, look in the following mbean path:

kafka.server -> Produce -> [contains your list of producers]

enter image description here

查看更多
登录 后发表回答