prometheus热加载配置的步骤是什么

打开 Prometheus 配置文件 prometheus.yml
在文件中添加要热加载的配置文件的路径,例如:

remote_write:
  - url: "http://localhost:9090/write"
    bearer_token: "exampletoken"
remote_read:
  - url: "http://localhost:9090/read"
    bearer_token: "exampletoken"

保存 prometheus.yml 文件
重新加载 Prometheus 配置,可以通过发送 SIGHUP 信号给 Prometheus 进程来实现,例如:

kill -HUP [pid]

Prometheus 将会重新加载配置,包括热加载的配置文件。

阅读剩余
THE END