我们可以将作业部分保存到一个单独的文件中吗?是否可以包含 prometheus.yml
我们可以将作业部分保存到一个单独的文件中吗?是否可以将其包含在 prometheus.yml 中。
我们有多个基础设施需要监控,因此将作业聚合并将它们保存在单独的文件中会很有帮助。 请帮忙
Can we keep the job section into a separate file and is it possible to include it in prometheus.yml.
We have multiple infrastructures to monitor,r so it would be helpful to aggregate with jobs and keep them in separate files.
Pls help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将每个作业保存在不同的文件中,并使用“file_sd_configs”子句将它们“包含”在 Prometheus 配置文件中,如下例所示。
prometheus.yaml
blackbox.yaml
node.yaml
除了组织之外,另一个优点是无需在每次更改这些文件时重新加载 Prometheus 设置(这是自动完成的)。
更多信息请参见此处的 Prometheus 文档。
You can keep each job in a different file and use the "file_sd_configs" clause to "include" them in the Prometheus config file, like in the following example.
prometheus.yaml
blackbox.yaml
node.yaml
Besides the organization, another advantage is that it is not necessary to reload the Prometheus settings every time these files are changed (this is done automatically).
More info in the Prometheus documentation here.