prometheus 动态加载配置文件 热更新

相关搭建文章:https://www.cnblogs.com/xiao987334176/p/9930517.html

现通过docker启动prometheus 的时候,需要动态加载新的target,启动的时候需要添加一个配置项

--web.enable-lifecycle

完整的启动命令:

docker run -d -p 9090:9090   -v /opt/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml    prom/prometheus  --config.file=/etc/prometheus/prometheus.yml   --web.enable-lifecycle

然后通过http接口刷新热更新配置文件

curl -X POST http://192.168.X.X:9090/-/reload

 

你可能感兴趣的:(prometheus 动态加载配置文件 热更新)