Zookeeper Kafka- How to get the current ACLs details from the kafka cluster

cgfeq70w  于 2022-12-09  发布在  Apache
关注(0)|答案(1)|浏览(142)

我想获得所有的ACL详细信息,我们已经添加到Kafka集群到目前为止,并存储在仓库中的报告目的。
最好的办法是什么。
ACL信息,例如
用户、主题、权限类型(写/读)、使用者

cetgtptt

cetgtptt1#

kafka-acls命令可获取所有详细信息
例如:

kafka-acls --bootstrap-server ${broker}:9092 --list

相关问题