Convert alertmanger webhook messages to qiye WeChat robots that can receive messages
./bin/alertmanager-wechatbot-webhook --RobotKey="xxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxx"
or
go run alertmanager-wechatbot-webhook.go --RobotKey="xxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxx"
alertmanager.yml
receivers:
- name: webhook-test
webhook_configs:
- url: 'http://127.0.0.1:8999/webhook?key=xxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxx'
prometheus rules configure
groups:
- name: ansible managed alert rules
rules:
- alert: CriticalCPULoad
expr: (100 * (1 - avg(irate(node_cpu_seconds_total{mode="idle"}[5m])) BY (instance)))
> 96
for: 2m
labels:
severity: critical
annotations:
description: '{{ $labels.instance }} of mountpoint {{ $labels.mountpoint }} has
Critical CPU load for more than 2 minutes.'
summary: Instance {{ $labels.instance }} - Critical CPU load
wechatRobot: "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxxxx-xxxxxxxx-xxxxx-xxxxxx"
curl 'http://127.0.0.1:8999/webhook' -H 'Content-Type: application/json' -d '
{
"receiver": "webhook-test",
"status": "firing",
"alerts": [
{
"status": "firing",
"labels": {
"alertname": "test alert1",
"instance": "example1",
"severity": "critical"
},
"annotations": {
"info": "Test message,ignore",
"description": "This is test summary,ignore",
"summary": "This is test message,ignore"
},
"startsAt": "2019-07-24T02:38:30.763785079Z",
"endsAt": "0001-01-01T00:00:00Z",
"generatorURL": "critical"
}
],
"groupLabels": {
"alertname": "test alert1"
},
"commonLabels": {
"alertname": "test alert1",
"instance": "example1"
},
"commonAnnotations": {
"info": "Test message,ignore",
"summary": "This is test summary,ignore"
},
"externalURL": "http://localhost:9093",
"version": "4",
"groupKey": "{}/{alertname=~\"^(?:test.*)$\"}:{alertname=\"test alert1\"}"
}'
curl 'http://127.0.0.1:8999/webhook?key=xxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxx' -H 'Content-Type: application/json' -d '
{
"receiver": "webhook-test",
"status": "firing",
"alerts": [
{
"status": "firing",
"labels": {
"alertname": "test alert1",
"instance": "example1",
"severity": "critical"
},
"annotations": {
"info": "Test message,ignore",
"description": "This is test summary,ignore",
"summary": "This is test message,ignore"
},
"startsAt": "2019-07-24T02:38:30.763785079Z",
"endsAt": "0001-01-01T00:00:00Z",
"generatorURL": "critical"
}
],
"groupLabels": {
"alertname": "test alert1"
},
"commonLabels": {
"alertname": "test alert1",
"instance": "example1"
},
"commonAnnotations": {
"info": "Test message,ignore",
"summary": "This is test summary,ignore"
},
"externalURL": "http://localhost:9093",
"version": "4",
"groupKey": "{}/{alertname=~\"^(?:test.*)$\"}:{alertname=\"test alert1\"}"
}'
curl 'http://127.0.0.1:8999/webhook' -H 'Content-Type: application/json' -d '
{
"receiver": "webhook-test",
"status": "firing",
"alerts": [
{
"status": "firing",
"labels": {
"alertname": "test alert1",
"instance": "example1",
"severity": "critical"
},
"annotations": {
"info": "Test message,ignore",
"description": "This is test summary,ignore",
"summary": "This is test message,ignore"
},
"startsAt": "2019-07-24T02:38:30.763785079Z",
"endsAt": "0001-01-01T00:00:00Z",
"generatorURL": "critical"
}
],
"groupLabels": {
"alertname": "test alert1"
},
"commonLabels": {
"alertname": "test alert1",
"instance": "example1"
},
"commonAnnotations": {
"info": "Test message,ignore",
"summary": "This is test summary,ignore",
"wechatRobot": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxx-xxxxx-xxxxx-xxxxxx-xxxxxxx"
},
"externalURL": "http://localhost:9093",
"version": "4",
"groupKey": "{}/{alertname=~\"^(?:test.*)$\"}:{alertname=\"test alert1\"}"
}'