gpt4 book ai didi

prometheus - 普罗米修斯中的刮取间隔和评估间隔

转载 作者:行者123 更新时间:2023-12-04 12:25:51 24 4
gpt4 key购买 nike

我的抓取间隔和评估间隔在下面(15s vs 4m)相差甚远。当我向端点提供指标时,我发现规则每 4m 评估一次,这是预期的。但是,我不明白的是,它不会评估过去 4 分钟内提供的所有指标的规则。我很难理解两个时钟(刮取和评估)的工作原理。此外,围绕此的文档非常稀少。任何指针都会有很大帮助。我毫不犹豫地将抓取时间和评估时间更改为 15 秒。但我需要了解将时钟分开的后果。

# my global config
global:
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
evaluation_interval: 4m # Evaluate rules every 15 seconds. The default is every 1 minute.
# scrape_timeout is set to the global default (10s).

# Alertmanager configuration
alerting:
alertmanagers:
- static_configs:
- targets:
- testmanager:9093

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
- "/etc/prometheus/xyz_rule.yml"
- "/etc/prometheus/pqr_rule.yml"

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
- job_name: 'prometheus'

# metrics_path defaults to '/metrics'
metrics_path: /v1/metrics/xyz
# scheme defaults to 'http'.

static_configs:
- targets: ['test:7070']

最佳答案

这两个进程是独立的,PromQL 和记录规则都不知道你的抓取间隔是多少。因此,无论评估间隔是多少,在给定时间评估时,您指定的任何规则都将以相同的方式评估并获得相同的结果。

为简单起见,最好使两个间隔相同,因此我建议将两者都设置为 15s。

关于prometheus - 普罗米修斯中的刮取间隔和评估间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52167869/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com