nginx 代理 prometheus

动态更新配置

  1. 直接重启prometheus
  2. 保证prometheus启动命令参数带:
    ./prometheus --config.file=prometheus.yml --web.enable-lifecyle --web.listen-address="0.0.0.0:9090" > log.file 2>&1 &
  3. 更新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。
posted @ 2022-07-14 09:59  Peak-Gao  阅读(8)  评论(0编辑  收藏  举报  来源