动态更新配置
- 直接重启prometheus
- 保证prometheus启动命令参数带:
./prometheus --config.file=prometheus.yml --web.enable-lifecyle --web.listen-address="0.0.0.0:9090" > log.file 2>&1 &
- 更新promethus配置
curl -v --request POST 'http://localhost:9090/-/reload'
nginx 代理 prometheus
-
错误示例
location ^~ /prometheus/ {
proxy_pass http://localhost:9100/graph
}
-
正式示例
location ^~ /prometheus/ {
proxy_pass http://localhost:9100/
}
-
访问
http://ip:9100/prometheus/graph
发现直接使用prometheus还是不能访问 在路径prometheus后需要加graph,prometheus会自动添加下文地址“graph”,如果不加“graph”,nginx报错:访问graph是500。
评论区