Prometheus:抓取间隔为 1m,但分辨率仍为 15s

Prometheus:抓取间隔为 1m,但分辨率仍为 15s

总结:我的抓取间隔为 1 分钟,但分辨率却是 15 秒。为什么?


我的 prometheus 配置包括一项抓取 kong 指标的作业:

- job_name: kong_blue
  honor_timestamps: true
  scrape_interval: 1m
  scrape_timeout: 10s
  metrics_path: /metrics
  scheme: https
  dns_sd_configs:
  - names:
    - ...

因此,当targets在 HTML 界面的选项卡上时,我们可以看到 kong 大约每分钟被抓取一次,正如预期的那样。

但是,当我查询该数据时,例如kong_http_status,prometheus 指示分辨率为 14 秒。事实上,图表还显示每 15 秒“滴答”一次的值。

prometheus 中的 kong_http_status 查询,显示分辨率为 14s

为什么我的分辨率是15s?

答案1

这里的分辨率是图表的分辨率,由图表的宽度和覆盖的时间段自动决定。它与抓取间隔无关。

如果您想使其更低,请缩小或在分辨率文本框中手动设置它。

答案2

如果您在 Prometheus 数据源上对其进行更改。 Prometheus数据源

它将在 Grafana 上自动更新 格拉法纳

相关内容