Hi am trying to get Kafka users list using the below command. My Confluent version is 7.3.6
kafka-configs --bootstrap-server broker-server:9092 --command-config client.properties
--describe --entity-type users --entity-type clients
The command doesn’t generate any error but there is no output either.
Also tried separately for users and clients
Whereas, if I run the similar command to get Topics info, I get the expected output
kafka-configs --bootstrap-server broker-server:9092 --command-config client.properties
--describe --entity-type topics
Ref: Confluent doc
Am I missing something when requesting information about the users or clients? ( According to the attached link, the commands I have should be enough )