企业微信地址,个人可注册

https://work.weixin.qq.com/

登录企业微信

  1. 企业 -> 微工作台里可以直接微信关注,无需要下载企业微信
  2. 通讯录里的账号在发微信脚本中要用到
  3. 应用与小程序可创建应用

发微信的python脚本/usr/local/zabbix/alertscripts/zabbix_wx.py

#!/usr/bin/python

# -*- coding: utf-8 -*-

import json

import sys

import urllib,urllib2

agentid = 'xxx'

corpid = 'xxx'

corpsecret = 'xxx'

#get tocken

gettoken_url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + corpsecret

token_file = urllib2.urlopen(gettoken_url)

token_data = token_file.read().decode('utf-8')

token_json = json.loads(token_data)

my_token = token_json['access_token']

#send wechart

touser=sys.argv[1]  #many user: 'zhangsan|wangwu'

content=sys.argv[2] #content

post_content = {

        "touser":touser,

        "agentid":agentid,

        "msgtype": "text",

        "text":{

                "content":content,

        }

}

json_content = json.dumps(post_content)

url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + my_token

response = urllib2.urlopen(url,json_content)

print(response.read().decode('utf-8'))

测试脚本

/usr/local/zabbix/alertscripts/zabbix_wx.py 'zhuang_weihong' 'disk is not enough'

Zabbix微信告警配置步骤

  1. 写一个微信告警的脚本,这个已经测试成功
  2. 报警媒介添加微信告警
  3. 用户设置报警媒介
  4. 创建触发器动作
Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐