为了最大限度地减少普罗米修斯联盟的负载,我正在尝试禁用特定指标的抓取。请告诉我我们是否有这样的选择或任何其他选择。
这在文档中有解释:
必须至少指定一个
match[]
URL参数才能选择要公开的系列。每个match[]
自变量都需要指定一个即时向量选择器,如up
或{job="api-server"}
。如果提供了多个match[]
参数,则选择所有匹配系列的并集。
换句话说,通过使用match[]
,您可以明确表示要联合的度量。
scrape_configs:
- job_name: 'federate'
scrape_interval: 15s
honor_labels: true
metrics_path: '/federate'
params:
'match[]':
# all metrics with label job == "prometheus"
- '{job="prometheus"}'
# plus all metrics with label foo == "bar" where instance != "example.com"
- '{foo="bar", instance!="example.com"}'
# and so on
static_configs:
- targets:
- 'source-prometheus-1:9090'
- 'source-prometheus-2:9090'
- 'source-prometheus-3:9090'