我知道我们可以使用脚本来获取主题(reference)的分区计数,如下所示,
./kafka-topics.sh --describe --zookeeper localhost:2181 --topic topic_name
结果是
Topic:topic_name PartitionCount:2 ReplicationFactor:1 Configs:
Topic: topic_name Partition: 0 Leader: 0 Replicas: 0 Isr: 0
Topic: topic_name Partition: 1 Leader: 0 Replicas: 0 Isr: 0
我们如何使用 JMX 来监视一个代理中特定主题的分区数量?