0

我最近使用Prometheusand实现了监控服务Alert-manager,一切正常,如果我的实例关闭或高内存使用都在rules.yml文件中配置,我会收到通知

我想为我的Ringcentral (glip)应用设置警报管理器通知。由于 glip 应用程序是开源/免费的消息传递和协作应用程序。

基本上promethues官方文档说我们可以配置alertmanager来发送通知slack, wechat etc而不是我希望我的alertmanager通知我的应用程序

Ring central (glip) status

team - myteam
incoming webhook - enabled
api status - ok
api_key - I have the glip api for the specific team

这是我的

alertmanager.yml

global:
  resolve_timeout: 10s

route:
  group_by: ['alertname', 'client']
  group_wait: 10s
  group_interval: 10s
  repeat_interval: 30s
  receiver: 'servicenow-receiver-1'

receivers:
- name: 'servicenow-receiver-1'
  webhook_configs:
  - url: "https://hooks.glip.com/webhook/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9###"
    send_resolved: true

我的 glip 应用程序没有收到任何通知,我是否错过了任何配置?让我知道,解决方案是什么?

4

0 回答 0