How to list all available Kafka brokers in a cluster?

后端 未结 9 1230
甜味超标
甜味超标 2020-12-22 23:50

I am writing a shell script to monitor kafka brokers.

I have gone through some links and found that if ZooKeeper contains a list of brokers, and if, in this list, th

9条回答
  •  被撕碎了的回忆
    2020-12-23 00:19

    Using Confluent's REST Proxy API v3:

    curl -X GET -H "Accept: application/vnd.api+json" localhost:8082/v3/clusters
    

    where localhost:8082 is Kafka Proxy address.

提交回复
热议问题