• 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)

  • 相关阅读:
    day01
    You need tcl 8.5 or newer in order to run the Redis test
    docker配置网络
    centos设置时间同步
    cacti 添加tomcat监控
    cacti 安装perl 和XML::Simple
    cacti 添加redis监控(远程服务器)
    cacti安装spine 解决WARNING: Result from CMD not valid. Partial Result: U错误
    cacti 添加mysql 监控 (远程服务器)
    centos 安装redis
  • 原文地址:https://www.cnblogs.com/yangxiaochu/p/8334352.html
Copyright © 2020-2023  润新知