I enabled JMX on the kafka brokers on port 8081. When I view the MBean properties in jConsole, I only see the following for `kafka.consumer`-
kafka.consumer:type=FetchRequestAndResponseMetrics,name=FetchRequestRateAndTimeMs,clientId=ReplicaFetcherThread-2-413
kafka.consumer:type=FetchRequestAndResponseMetrics,name=FetchResponseSize,clientId=ReplicaFetcherThread-0-413
Kafka Version # 0.8.2.1 / 0.9
I am specifically interested in -
`kafka.consumer:type=ConsumerFetcherManager,name=MaxLag,clientId=([-.\w]+)`
Is there any other way we can capture max lag by consumer via JMX? And more importantly, why are the other properties not emitted by the broker?
Thanks!