Prometheus 安装
Posted hequan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus 安装相关的知识,希望对你有一定的参考价值。
prometheus 安装
官网:https://prometheus.io/download/
GitHub:https://github.com/prometheus/prometheus
Prometheus配置信息的热加载有两种方式:
第一种热加载方式:查看Prometheus的进程id,发送 SIGHUP 信号:
kill -HUP <pid>
第二种热加载方式:发送一个POST请求到 /-/reload ,需要在启动时给定 --web.enable-lifecycle 选项:
curl -X POST http://localhost:9090/-/reload
如果配置热加载成功,Prometheus会打印出下面的log:
... msg="Loading configuration file" filename=prometheus.yml ...
以上是关于Prometheus 安装的主要内容,如果未能解决你的问题,请参考以下文章