温馨提示×

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

小亿
99
2024-03-16 14:50:42
栏目: 智能运维

  1. 打开 Prometheus 配置文件 prometheus.yml
  2. 在文件中添加要热加载的配置文件的路径,例如:
remote_write:
  - url: "http://localhost:9090/write"
    bearer_token: "exampletoken"
remote_read:
  - url: "http://localhost:9090/read"
    bearer_token: "exampletoken"
  1. 保存 prometheus.yml 文件
  2. 重新加载 Prometheus 配置,可以通过发送 SIGHUP 信号给 Prometheus 进程来实现,例如:
kill -HUP [pid]
  1. Prometheus 将会重新加载配置,包括热加载的配置文件。

0