Justin
Justin

Reputation: 745

How to Find Starting time of consuming data from a kafka topic by the consumer group

Is there any API we can use to find the starting time of consumer group started consuming from a Kafka topic?

I am using Kafka Version 0.11

Upvotes: 0

Views: 174

Answers (1)

Mickael Maison
Mickael Maison

Reputation: 26885

Kafka doesn't track this information so there's no API you can query to retrieve this data. However, there's a number of consumer group metrics you can monitor that should enable you to figure this out.

Also monitoring tools like Burrow should help you find this information.

Upvotes: 1

Related Questions