如何配置和使用从周五 20:00 到周一 07:00 的 time_interval?

问题描述 投票:0回答:1

我想在周五和周一之间禁用某些 Prometheus 警报。我们已经配置了接收器和路由,如下所示:

routes:
- receiver: 'msteams'
  matchers:
    - alertname =~ "Example-.+"
  mute_time_intervals:
    - weekend

现在我陷入了定义时间间隔的困境

weekend

我们确保警报本身按预期工作。

我尝试参考文档here,但我想查看带有

time_interval
部分的完整示例,我可以参考。

configuration notifications prometheus prometheus-alertmanager
1个回答
0
投票

您可以将周末时间间隔定义为:

time_intervals:
  - name: my_weekends
    time_intervals:
      - times:
      - start_time: 20:00
        end_time: 7:00
      weekdays: ['friday:monday']
© www.soinside.com 2019 - 2024. All rights reserved.