Kafka JMX 指标的时间 window 是几点?

What is the time window for Kafka JMX metrics?

有关某些 JMX 指标的文档提到了一个时间 window,其中一些指标是平均的。

例如这里:https://docs.confluent.io/current/kafka/monitoring.html

这次window是什么时候?它是固定的、可配置的还是动态调整的?

request-size-avg::
    The average size of all requests in the window for a broker.

感谢您的帮助。

request-size-avg 是根据 kafka-clients (producer/consumer) 计算的指标。 window 可通过配置进行配置:metrics.sample.window.ms

来自官方 documentation :

The window of time a metrics sample is computed over.

此配置的值默认设置为 30000(30 秒)。 Consumer、Producer、Kafka Connect 和 Kafka Streams 目前支持此配置。

请注意,其他配置可能会影响指标计算:metrics.num.samples