confluent-kafka-javascript icon indicating copy to clipboard operation
confluent-kafka-javascript copied to clipboard

Add admin API operations to promisified and non-promisified API

Open milindl opened this issue 1 year ago • 6 comments

For example: listing topics, ACL operations, consumer group operations, consumer group offset operations.

milindl avatar Feb 19 '24 03:02 milindl

Added: ListGroups to list consumer groups

milindl avatar Mar 15 '24 08:03 milindl

Added: DeleteGroups and DescribeGroups Added: ListTopics

milindl avatar Apr 08 '24 07:04 milindl

+1 for describeGroup. We use this function to health check the consumer. Any idea how to do it without this function?

brunodomenici avatar Apr 23 '24 08:04 brunodomenici

@brunodomenici , the function is already available in the released version of the library which you can download off npm.

Unfortunately I've not added an example yet, but the usage can be seen in the test: https://github.com/confluentinc/confluent-kafka-javascript/blob/v0.1.12-devel/test/promisified/admin/describe_groups.spec.js#L71

milindl avatar Apr 23 '24 09:04 milindl