zoukankan      html  css  js  c++  java
  • zabbix监控报警python脚本

    #!/usr/bin/python
    #_*_coding:utf-8 _*_


    import urllib,urllib2
    import json
    import sys
    import simplejson

    reload(sys)
    sys.setdefaultencoding('utf-8')


    def gettoken(corpid,corpsecret):
    gettoken_url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + corpsecret
    print gettoken_url
    try:
    token_file = urllib2.urlopen(gettoken_url)
    except urllib2.HTTPError as e:
    print e.code
    print e.read().decode("utf8")
    sys.exit()
    token_data = token_file.read().decode('utf-8')
    token_json = json.loads(token_data)
    token_json.keys()
    token = token_json['access_token']
    return token

    def senddata(access_token,subject,content):

    send_url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + access_token
    send_values = {
    "totag":"1", #企业号中的部门id。
    "msgtype":"text", #消息类型。
    "agentid":"1000002", #企业号中的应用id。
    "text":{
    "content":subject + ' ' + content
    },
    "safe":"0"
    }
    # send_data = json.dumps(send_values, ensure_ascii=False)
    send_data = simplejson.dumps(send_values, ensure_ascii=False).encode('utf-8')
    send_request = urllib2.Request(send_url, send_data)
    response = json.loads(urllib2.urlopen(send_request).read())
    print str(response)


    if __name__ == '__main__':
    subject = str(sys.argv[1]) #zabbix传过来的第二个参数
    content = str(sys.argv[2]) #zabbix传过来的第三个参数

    corpid = 'xxxxxxxxxxxxxxxxxxxxxxxxxx' #CorpID是企业号的标识
    corpsecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' #corpsecretSecret是管理组凭证密钥
    accesstoken = gettoken(corpid,corpsecret)
    senddata(accesstoken,subject,content)

  • 相关阅读:
    「AHOI / HNOI2017」单旋
    【CQOI2012】局部极小值
    【CQOI2011】放棋子
    【gdoi2018 day2】第二题 滑稽子图
    【JSOI2018】潜入行动
    在vue中获取不到canvas对象? 两种解决办法。
    数据可视化echart
    在vue中使用高德地图开发,以及AMap的引入?
    mac 常使用的一些小技巧
    form编码方式application/x-www-form-urlencoded和multipart/form-data的区别?
  • 原文地址:https://www.cnblogs.com/yangxiaochu/p/8334352.html
Copyright © 2011-2022 走看看