Prometheus配置基于文件的服务发现
Posted y_zilong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus配置基于文件的服务发现相关的知识,希望对你有一定的参考价值。
采用基于文件的服务发现方式,可以灵活定义要监控的目标主机列表,并且增加或减少目标主机,均无需重载Prometheus。
1、配置Prometheus
vim prometheus.yml
- job_name: 'node_exporter'
file_sd_configs:
- refresh_interval: 1m # 每1分钟重新读取一次文件内容,默认为5m
files:
- /app/prometheus/file_ds/node_exporter.yaml
2、定义服务发现yml文件
cat /app/prometheus/file_ds/node_exporter.yaml
- targets:
- 10.56.0.2:9100
- 10.56.0.3:9100
- 10.56.0.4:9100
- 10.56.0.5:9100
- 10.56.0.6:9100
...省略
labels:
idc: pod7
3、重载Prometheus并验证target列表
#重启Prometheus
curl -XPOST http://10.56.0.2:9090/-/reload
# 这种重载方式要求Prometheus启动时增加了 “--web.enable-lifecycle” 选项
4、访问Prometheus的targets列表
以上是关于Prometheus配置基于文件的服务发现的主要内容,如果未能解决你的问题,请参考以下文章