侧边栏壁纸
  • 累计撰写 72 篇文章
  • 累计创建 31 个标签
  • 累计收到 5 条评论

目 录CONTENT

文章目录

nginx 代理 prometheus-Peak-Gao

PeakGao
2024-11-27 / 0 评论 / 0 点赞 / 2 阅读 / 0 字 / 正在检测是否收录...
温馨提示:
部分素材可能会来自网络,若不小心影响到您的利益,请联系我们删除。

动态更新配置

  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。
0
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin

评论区