赞
踩
目录
创建或者加入钉钉企业内部群
在群聊中添加机器人
群设置>机器人>添加机器人>自定义>添加
注:如果忘记保存密钥和Webhook可以在机器人设置中查找
注意:所有配置均在zabbix server服务器上完成
①安装python依赖模块
yum -y install python3 python3-requests
②配置钉钉告警的配置脚本
在 /etc/zabbix/ 目录下创建 zabbix_dingding.conf 文件
vim /etc/zabbix/zabbix_ding.conf
添加如下内容:
- [config]
- log_path=/var/log/zabbix/zabbix_ding.log
- # webhook和secret的内容复制实际获取到的信息
- webhook=https://oapi.dingtalk.com/robot/send?access_token=f6bd4c0b8aa5011bc7d6f81ea6018fd45c2a7c21c1ecf1f9e03f9e61cabedfba
- secret=SECe81b7bae0862dac26709b82f06f213aea0d3e2ae74eeed15a194ec4d06379201
在 /var/log/zabbix 目录中创建钉钉告警日志文件 zabbix_dingding.log
touch /var/log/zabbix/zabbix_ding.log
设置钉钉告警日志文件zabbix_ding.log的所有权
chown zabbix.zabbix /var/log/zabbix/zabbix_ding.log
③配置钉钉告警执行脚本
在 zabbix_server.conf 中配置告警脚本的路径
vim /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts
在 /usr/lib/zabbix/alertscripts 目录中添加执行脚本 dingding.py 文件
cd /usr/lib/zabbix/alertscripts
vim dingding.py
添加下面的内容:
- #!/usr/bin/env python3
- # coding:utf8
- #
- import configparser
- import os
- import time
- import hmac
- import hashlib
- import base64
- import urllib.parse
- import requests
- import json
- import sys
-
- config = configparser.ConfigParser()
- config.read('/etc/zabbix/zabbix_ding.conf', encoding='utf-8')
- log_path = config.get('config', 'log_path')
- api_url = config.get('config', 'webhook')
- api_secret = config.get('config', 'secret')
- log_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
-
-
- # 钉钉机器人文档说明
- # https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq
- def get_timestamp_sign():
- timestamp = str(round(time.time() * 1000))
- secret = api_secret
- secret_enc = secret.encode('utf-8')
- string_to_sign = '{}\n{}'.format(timestamp, secret)
- string_to_sign_enc = string_to_sign.encode('utf-8')
- hmac_code = hmac.new(secret_enc, string_to_sign_enc, digestmod=hashlib.sha256).digest()
- sign = urllib.parse.quote_plus(base64.b64encode(hmac_code))
- return timestamp, sign
-
- # 获取加签后的链接
- def get_signed_url():
- timestamp, sign = get_timestamp_sign()
- webhook = api_url + "×tamp=" + timestamp + "&sign=" + sign
- return webhook
-
- # 定义消息模式
- def get_webhook(mode):
- if mode == 0: # only 关键字
- webhook = api_url
- elif mode == 1 or mode == 2: # 关键字和加签 或 # 关键字+加签+ip
- webhook = get_signed_url()
- else:
- webhook = ""
- print("error! mode: ", mode, " webhook : ", webhook)
- return webhook
-
-
- def get_message(text, user_info):
- # 和类型相对应,具体可以看文档 :https://ding-doc.dingtalk.com/doc#/serverapi2/qf2nxq
- # 可以设置某个人的手机号,指定对象发送
- message = {
- "msgtype": "text", # 有text, "markdown"、link、整体跳转ActionCard 、独立跳转ActionCard、FeedCard类型等
- "text": {
- "content": text # 消息内容
- },
- "at": {
- "atMobiles": [
- user_info,
- ],
- "isAtAll": False # 是否是发送群中全体成员
- }
- }
- return message
-
-
- # 消息发送日志
- def log(info):
- if os.path.exists(log_path):
- log_file = open(log_path, "a+")
- else:
- log_file = open(log_path, "w+")
- log_file.write(info)
-
-
- def send_ding_message(text, user_info):
- # 请求的URL,WebHook地址
- # 主要模式有 0 : 关键字 1:# 关键字 +加签 3:关键字+加签+IP
- webhook = get_webhook(1)
- # 构建请求头部
- header = {
- "Content-Type": "application/json",
- "Charset": "UTF-8"
- }
- # 构建请求数据
- message = get_message(text, user_info)
- # 对请求的数据进行json封装
- message_json = json.dumps(message)
- # 发送请求
- info = requests.post(url=webhook, data=message_json, headers=header).json()
- code = info["errcode"]
- errmsg = info["errmsg"]
- if code == 0:
- log(log_time + ":消息已发送成功 返回信息:%s %s\n" % (code, errmsg))
- else:
- log(log_time + ":消息发送失败 返回信息:%s %s\n" % (code, errmsg))
- print(log_time + ":消息发送失败 返回信息:%s %s\n" % (code, errmsg))
- exit(3)
-
-
- if __name__ == "__main__":
- text = sys.argv[3]
- user_info = sys.argv[1]
- send_ding_message(text, user_info)
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
设置脚本目录的所有权
chown -R zabbix.zabbix /usr/lib/zabbix/alertscripts/
给脚本x权限后测试
chmod +x dingding.py
./dingding.py user subject hello
脚本传输参数:
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}
告警主机:{HOST.NAME}
告警地址:{HOST.IP}
监控项目:{ITEM.NAME}
监控取值:{ITEM.LASTVALUE}
告警等级:{TRIGGER.SEVERITY}
当前状态:{TRIGGER.STATUS}
告警信息:{TRIGGER.NAME}
告警时间:{EVENT.DATE} {EVENT.TIME}
事件ID:{EVENT.ID}
关闭nginx
查看问题
查看消息
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。