Alertmanager的webhook内容

alertmanger告警消息

最近在做alertmanger的自定义webhook,在此记录alertmanager发送的告警消息内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
'receiver': 'outbound_phone',
'status': 'firing',
'alerts': [{
'status': 'firing',
'labels': {
'alertname': '测试外呼告警',
'cluster': 'product',
'clustering': 'dev-test',
'course': 'outbound_phone',
'instance': 'SC-201911251642',
'job': 'outbound_phone_metric',
'phone': '18650032533,15209884564,15902877852',
'severity': 'outbound_phone',
'type': 'outbound_phone'
},
'annotations': {
'value': '电话告警服务异常'
},
'startsAt': '2020-07-10T17:21:59.152379544+08:00',
'endsAt': '0001-01-01T00:00:00Z',
'generatorURL': 'http://haifly-bj-prometheus:9090/graph?g0.expr=outbound_phone%7Bclustering%3D%22dev-test%22%7D+%3D%3D+1&g0.tab=1'
}],
'groupLabels': {
'alertname': '测试外呼告警'
},
'commonLabels': {
'alertname': '测试外呼告警',
'cluster': 'product',
'clustering': 'dev-test',
'course': 'outbound_phone',
'instance': 'SC-201911251642',
'job': 'outbound_phone_metric',
'phone': '18650032533,15209884564,15902877852',
'severity': 'outbound_phone',
'type': 'outbound_phone'
},
'commonAnnotations': {
'value': '电话告警服务异常'
},
'externalURL': 'http://haifly-bj-prometheus:9093',
'version': '4',
'groupKey': '{}/{severity=~"^(?:outbound_phone)$"}:{alertname="测试外呼告警"}'
}

python 处理 alertmanager告警消息

然后用python写一个接口用于接收和处理alertmanager的告警消息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-

from flask import Flask,request
import json

app = Flask(__name__) # 创建一个服务,赋值给APP

@app.route('/outbound_phone', methods=['post']) # 指定接口访问的路径,支持什么请求方式get,post

def device_phones():
# if request.method == 'POST':
post_data = request.get_data()
print("告警状态",json.loads(post_data)["status"])
print("告警phone",json.loads(post_data)["commonLabels"]["phone"])
print("告警phone_list",list(json.loads(post_data)["commonLabels"]["phone"].strip(',').split(',')))
alert_status = json.loads(post_data)["status"]

if __name__ == '__main__':

app.run(host='0.0.0.0',port=8803)

告警消息格式化

告警消息格式化可参考:https://github.com/songjiayang/prometheus_practice/issues/12

-------------本文结束感谢您的阅读-------------