Hi Guozhang, thanks for the feedback.
Guozhang wrote: > Could you elaborate a bit on what does "load-processing-time-us" measure? I > looked through the discussion thread and the KIP / JIRA but cannot find its > definitions. Yes. I updated the KIP. This is what I documented: 1. kafka.server:type=broker-metadata-metrics,name=load-processing-time-us-avg Reports the average amount of time it took for the broker to process all pending records when there are pending records in the cluster metadata partition. The time unit for this metric is microseconds. 2. kafka.server:type=broker-metadata-metrics,name=load-processing-time-us-max Reports the maximum amount of time it took for the broker to process all pending records when there are pending records in the cluster metadata partition. The time unit for this metric is microseconds. 3. kafka.server:type=broker-metadata-metrics,name=record-batch-size-byte-avg Reports the average byte size of the record batches in the cluster metadata partition. 4. kafka.server:type=broker-metadata-metrics,name=record-batch-size-byte-max Reports the maximum byte size of the record batches in the cluster metadata partition. -José