I've got a Kafka app that can create multi-partition topics, populate them, and read from them with a consumer. That seems to work.
I'm trying to get visibility into Kafka so I've tried a few tools like kafka-manager and trifecta. These tools will tell me about my topics, partitions, etc., but don't seem to see my consumers to get the offsets for them.
If I look at my topics in kafka I see my topic plus a __consumer_offsets, which I think means Kafka (not Zookeeper) is storing my consumers.
Because this is a problem consistent across tools I'm wondering if I don't have something properly set in kafka, or are the tools not yet fully supporting 0.9.x?
__consumer_offsets,is used for this purpose. - Sebastian