亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

用python監控mysql數據庫是否可寫

發布時間:2020-06-28 21:21:24 來源:網絡 閱讀:4503 作者:duyunlong 欄目:數據庫

監控數據庫是否可寫,如果你的監控腳本邏輯是,寫入數據庫成功后顯示成功,反之顯示不成功然后報警。那么難題來了,數據庫真的無法寫入了,你的監控腳本的寫入命令也會被mysql hang住,一直卡在那里,直到天荒地老,根本無法實現報警。那換個思路,如果設置個超時時間,是不是更好。

#!/usr/bin/env python
# -*-coding:utf8-*-
import MySQLdb
import re
import smtplib
import json
from email.mime.text 
import MIMEText
import sys
import time
import multiprocessing
reload(sys)
sys.setdefaultencoding('utf8')


def mysql_select(sql, pipe):
    try:
        conn = MySQLdb.connect(host='xxx.xxx.xxx.xxx',user='xxxx',passwd='xxxx',db='xxxx',port=xxxx,charset='utf8',connect_timeout=10)
        cursor = conn.cursor()
        cursor.execute(sql)
        result = cursor.fetchall()
        cursor.close()
        conn.commit()
        conn.close()
        pipe.send('successful')    
     except Exception,e:
        pipe.send("zabbix 數據庫異常: %s" % e) 

def query_with_timeout(sql):
    pipe_out, pipe_in = multiprocessing.Pipe(False)
    subproc = multiprocessing.Process(target=mysql_select,args=(sql, pipe_in))
    subproc.start()
    subproc.join(timeout=3)    
    if pipe_out.poll():
        ex_c = pipe_out.recv()    
    else:
        ex_c = "zabbix 數據庫無法寫入"
    subproc.terminate()    
    #raise Exception("Query %r ran for >%r" % (sql, 5))
    raise Exception(ex_c)
###
    
def se_mail(mail_result):
    now_time = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
    sys.setdefaultencoding('utf-8')
    SUBJECT = "數據庫監控"
    TO = "xxxx@ptthink.com"
    FROM = "ooooo@ptmind.com"
    msg = MIMEText("""
        <html>
            <head>
            </head>
            <body>
                <table width="800" border="1" cellspacing="0" cellpadding="4">
                    <tr>
                       <th bgcolor="#00FFFF" height="1"  colspan="4" align="center"  >中國區zabbix數據庫監控</th>
                    </tr>
                         <td  width="100px"    nowrap>告警區域</td>
                         <td  >中國</td>
                    <tr>
                    </tr>
                         <td  width="100px"    nowrap>主機名稱</td>
                         <td  >xxx.xxx.xxx.xxx</td>
                    <tr>
                    </tr>
                         <td  width="100px"    nowrap>告警項目</td>
                         <td  >zabbix數據庫監控</td>
                    <tr>
                    </tr>
                         <td  width="100px"    nowrap>告警級別</td>
                         <td  bgcolor=red >嚴重</td>
                    <tr>
                    </tr>
                         <td  width="100px"    nowrap>告警狀態</td>
                         <td  bgcolor=red >PROBLEM</td>
                    <tr>
                    </tr>
                         <td  width="100px"    nowrap>詳細內容</td>
                         <td  >""" + mail_result + """</td>
                    <tr>
                         <td  width="100px"    nowrap>發生時間</td>
                         <td  >""" + now_time + """</td>
                    </tr>
                </table>
            </body>
        </html>""","html","utf-8")
    msg['Subject'] = SUBJECT
    msg['From']=FROM
    msg['To']=TO    
    try:
        server = smtplib.SMTP('localhost')
        server.sendmail(FROM, TO, msg.as_string())
        server.quit()        
        print "郵件發送成功!"
    except Exception, e:        
        print "失敗:"+str(e)
        
###
    
if __name__ == '__main__':    
    #創建監控數據庫連接,與是否可寫,的監控表,下面是創建語句
    #sql_user_info = """
    #CREATE TABLE IF NOT EXISTS db_check_table (
    #itemid INT(20),
    #applicationid INT(20),
    #hostid INT(20),
    #name  VARCHAR(255),
    #du_name  VARCHAR(255),
    #item_name   VARCHAR(255)
    #)
    #"""
    insert_sql = """insert into db_check_table values ('10211','13564','456789','test-172.5.6.7','cpu','cpu ldie')"""   
    try:
        query_with_timeout(insert_sql)    
    except Exception,e:
        mail_result = str(e)        
        if mail_result != "successful" :
            se_mail(mail_result)


向AI問一下細節

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

AI

集安市| 东城区| 江安县| 和顺县| 莱芜市| 仁寿县| 永兴县| 休宁县| 兰坪| 张家界市| 兴文县| 新余市| 柯坪县| 铜梁县| 马鞍山市| 木里| 穆棱市| 开远市| 鄂托克前旗| 奉贤区| 涟源市| 宁明县| 嘉义县| 东海县| 铜陵市| 永泰县| 邵武市| 泰安市| 新龙县| 元阳县| 应城市| 汉寿县| 舞阳县| 盖州市| 大冶市| 梅州市| 兰西县| 神木县| 汝州市| 台东市| 泉州市|