微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Prometheus Alertmanager dc 警报消息 onyl dc 团队

如何解决Prometheus Alertmanager dc 警报消息 onyl dc 团队

我在不同位置的设备通过 Prometheus 和 alertmanager 跟踪它们,当 Prometheus alertmanager 触发时,它会转到所有团队。 当 Prometheus 生成警告时通知相关数据中心团队。在下面的例子中,我想要做的是将波士顿数据中心发生的问题报告给波士顿团队,我该怎么做? 谢谢。

普罗米修斯config.yml

    labels:
      dc: BOSTON
      name: BOS_APP_Server
      type: physical
  - targets:
    - 10.10.10.9:9100
    labels:
      dc: NEWY
      name: NEWY_APP_Server
      type: physical
  - targets:
    - 10.10.11.90:9100
    labels:
      dc: UTH
      name: UTH_FileServer
      type: physical
  - targets:
    - 10.10.12.99:9100` 
    

enter image description here

解决方法

您需要使用以下内容配置 Alertmanager:

route:
  # Default receiver
  receiver: 'report-team'
 
  routes:
    - receiver: 'boston-team'
      match_re:
        dc: BOSTON
 
    - receiver: 'newy-team'
      match_re:
        dc: NEWY
 
    - receiver: 'uth-team'
      match_re:
        dc: UTH
 
receivers:
  - name: 'report-team'
    email_configs:
      - to: 'REPORT-TEAM-EMAIL@SERVER'
 
  - name: 'boston-team'
    email_configs:
      - to: 'BOSTON-TEAM-EMAIL@SERVER'

  - name: 'newy-team'
    email_configs:
      - to: 'NEWY-TEAM-EMAIL@SERVER'

  - name: 'uth-team'
    email_configs:
      - to: 'UTH-TEAM-EMAIL@SERVER'

在 Alertmanager 配置 here 中查看更多信息。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。