中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

zabbix微信告警腳本

發布時間:2020-07-21 23:07:46 來源:網絡 閱讀:492 作者:920574057 欄目:建站服務器

# yum install -y git python-pip

# pip install requests simplejson

# git clone https://github.com/X-Mars/Zabbix-Alert-WeChat.git


查看腳本的存放目錄

# cat /etc/zabbix/zabbix_server.conf |grep alert
AlertScriptsPath=/usr/lib/zabbix/alertscripts



# cp ~/Zabbix-Alert-WeChat/wechat.py /usr/lib/zabbix/alertscripts/


# vi /usr/lib/zabbix/alertscripts/wechat.py 

#!/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,user,subject,content):

 

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

    send_values = {

        "touser":user,    #企業號中的用戶帳號,在zabbix用戶Media中配置,如果配置不正常,將按部門發送。

        "toparty":"2",    #企業號中的部門id。

        "msgtype":"text", #消息類型。

        "agentid":"6",    #企業號中的應用id。

        "text":{

            "content":subject + '\n' + 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__':

    user = str(sys.argv[1])     #zabbix傳過來的第一個參數

    subject = str(sys.argv[2])  #zabbix傳過來的第二個參數

    content = str(sys.argv[3])  #zabbix傳過來的第三個參數

    

    corpid =  'wx5c55b26119f82df5'   #CorpID是企業號的標識

    corpsecret = 'XqHkOZfq9NpiXRU1Z6Vh0aRlZstG0o8LnclmzGJ45VqofUGvf3f8JedJ-XgMsWCy'  #corpsecretSecret是管理組憑證密鑰

    accesstoken = gettoken(corpid,corpsecret)

    senddata(accesstoken,user,subject,content)


給權限否則無法使用

chmod +x /usr/lib/zabbix/alertscripts/wechat.py

# chown zabbix:zabbix /usr/lib/zabbix/alertscripts/wechat.py


https://github.com/X-Mars/Zabbix-Alert-WeChat



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

故城县| 民丰县| 静乐县| 东源县| 葫芦岛市| 台东县| 西城区| 楚雄市| 夹江县| 洪洞县| 略阳县| 灯塔市| 九寨沟县| 建平县| 石城县| 贵德县| 武义县| 从江县| 临夏县| 探索| 德清县| 宁南县| 莆田市| 聊城市| 龙泉市| 金华市| 滦平县| 皋兰县| 本溪市| 石阡县| 涡阳县| 保定市| 宽甸| 福建省| 武功县| 潜江市| 邢台市| 长阳| 吴江市| 福泉市| 盐源县|