Prometheus之Alertmanager钉钉报警配置 promentheus 官方没有钉钉插件,需要使用三方插件 prometheus-webhook-dingtalk
GitHub地址:https://github.com/timonwong/prometheus-webhook-dingtalk/
1 下载dingtalk 1 2 3 4 5 6 7 8 9 wget https://github.com/timonwong/prometheus-webhook-dingtalk/releases/download/v2.0.0/prometheus-webhook-dingtalk-2.0.0.linux-amd64.tar.gz tar xf prometheus-webhook-dingtalk-2.0.0.linux-amd64.tar.gz -C /usr/local / chown root:root -R /usr/local /prometheus-webhook-dingtalk-2.0.0.linux-amd64/ ln -sv /usr/local /prometheus-webhook-dingtalk-2.0.0.linux-amd64/ /usr/local /prometheus-webhook-dingtalk
2 dingtalk使用帮助 1 2 3 4 5 6 7 8 9 10 11 12 13 2.2 dingtalk使用帮助 usage: prometheus-webhook-dingtalk [<flags>] Flags: -h, --help Show context-sensitive help (also try --help-long and --help-man). --web.listen-address=:8060 The address to listen on for web interface. --web.enable-ui Enable Web UI mounted on /ui path --web.enable-lifecycle Enable reload via HTTP request. --config.file=config.yml Path to the configuration file. --log.level=info Only log messages with the given severity or above. One of: [debug, info, warn, error] --log.format=logfmt Output format of log messages. One of: [logfmt, json] --version Show application version.
3 dingtalk配置文件 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 2.3 dingtalk配置文件 touch /usr/local /prometheus-webhook-dingtalk/config.yml cat > /usr/local /prometheus-webhook-dingtalk/config.yml << \EOF timeout: 5s templates: - contrib/templates/legacy/template.tmpl default_message: title: '{{ template "legacy.title" . }}' text: '{{ template "legacy.content" . }}' targets: webhook1: url: https://oapi.dingtalk.com/robot/send?access_token=412c7cef2c39d96e565a54156b8aec88e02ec94ef19c0e096a6821e10f3430b9 secret: secret webhook_mention_all: url: https://oapi.dingtalk.com/robot/send?access_token=412c7cef2c39d96e565a54156b8aec88e02ec94ef19c0e096a6821e10f3430b9 secret: secret mention: all: true webhook_mention_users: url: https://oapi.dingtalk.com/robot/send?access_token=412c7cef2c39d96e565a54156b8aec88e02ec94ef19c0e096a6821e10f3430b9 mention: mobiles: ['13520642397' ] EOF cat /usr/local /prometheus-webhook-dingtalk/config.yml
4 添加dingtalk.service文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 touch /lib/systemd/system/dingtalk.service cat > /lib/systemd/system/dingtalk.service << \EOF [Unit] Descripton=dingtalk Documentation=https://github.com/timonwong/prometheus-webhook-dingtalk/ After=network.target [Service] Restart=on-failure WorkingDirectory=/usr/local /prometheus-webhook-dingtalk ExecStart=/usr/local /prometheus-webhook-dingtalk/prometheus-webhook-dingtalk --config.file=/usr/local /prometheus-webhook-dingtalk/config.yml [Install] WantedBy=multi-user.target EOF cat /lib/systemd/system/dingtalk.service
5 设置dingtalk开机启动 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 2.5 设置dingtalk开机启动 ~ Created symlink /etc/systemd/system/multi-user.target.wants/dingtalk.service → /lib/systemd/system/dingtalk.service. ~ ~ ● dingtalk.service Loaded: loaded (/lib/systemd/system/dingtalk.service; disabled; vendor preset: enabled) Active: active (running) since Wed 2021-12-01 14:29:35 CST; 4s ago Docs: https://github.com/timonwong/prometheus-webhook-dingtalk/ Main PID: 26590 (prometheus-webh) Tasks: 7 (limit : 7069) Memory: 2.5M CGroup: /system.slice/dingtalk.service └─26590 /usr/local /prometheus-webhook-dingtalk/prometheus-webhook-dingtalk --config.file=/usr/local /prometheus> Dec 01 14:29:35 nacos-03 systemd[1]: Started dingtalk.service. Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.918Z caller =main.go:60 msg="> Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.918Z caller=main.go:61 msg=" >Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.918Z caller =coordinator.go:8> Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.919Z caller =coordinator.go:9> Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.919Z caller =main.go:98 compo> Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: ts=2021-12-01T06:29:35.920Z caller =main.go:114 component=confi> Dec 01 14:29:35 nacos-03 prometheus-webhook-dingtalk[26590]: level=info ts=2021-12-01T06:29:35.920Z caller =web.go:210 compo>
6 验证dingtalk端口 1 2 3 4 5 6 2.6 验证dingtalk端口 ~ COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME prometheu 26590 root 3u IPv6 100982 0t0 TCP *:8060 (LISTEN)
7 集成 设置alertmanager 设置alertmanager 修改alertmanager.yml
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 global: resolve_timeout: 5m smtp_from: '13520642397@139.com' smtp_smarthost: 'smtp.139.com:25' smtp_auth_username: '13520642397@139.com' smtp_auth_password: 'secret' smtp_require_tls: false smtp_hello: '139.com' templates: - '/etc/alertmanager/template/email.tmpl' route: group_by: ['alertname' ] group_wait: 5s group_interval: 5m repeat_interval: 5m receiver: 'keendataMail' routes: - receiver: dingding.webhook1 continue : true - receiver: keendataMail match_re: alarmClassify: normal - receiver: QQemail match_re: alarmClassify: special receivers: - name: 'dingding.webhook1' webhook_configs: - url: 'http://192.168.12.218:8060/dingtalk/webhook1/send' send_resolved: true - name: 'keendataMail' email_configs: - to: 'zhangyichao@keendata.com' send_resolved: true headers: {Subject: "alertmanager报警邮件" } - name: 'QQemail' email_configs: - to: '758829146@qq.com' send_resolved: true headers: {Subject: "alertmanager报警邮件" } inhibit_rules: - source_match: severity: 'critical' target_match: severity: 'warning' equal: ['alertname' , 'dev' , 'instance' ]
3.2 重启Alertmanager服务 ~# systemctl restart alertmanager.service
参考材料 https://www.cnblogs.com/wangguishe/p/15629091.html