91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

MySQL 5.6大查詢和大事務監控腳本(Python 2)

發布時間:2020-08-11 17:46:18 來源:ITPUB博客 閱讀:225 作者:feelpurple 欄目:MySQL數據庫

可以配置在Zabbix里面,作為監控的模版

#!/usr/bin/env python
#
import MySQLdb,MySQLdb.cursors
import sys,time
from datetime import datetime
innodb_lock_output_file = '/tmp/innodb_lock_output.log'
# socket_dir = '/var/lib/mysql/mysql.sock'
time_step = 1
db_host = '127.0.0.1'
db_port = 23306
db_user = 'zabbix'
db_pass = 'l8ka65'
f = open(innodb_lock_output_file,'a')
current_time_stamp = int(time.time()) - time_step
current_time = time.ctime()
result = ''
# print sys.argv
if len(sys.argv) <> 2:
    print "Usage: %s current_lock | current_running" % sys.argv[0]
    exit()
db = MySQLdb.connect(host=db_host, user=db_user,
                     passwd=db_pass, charset='utf8',
                     port = db_port
                     # unix_socket=socket_dir
                     )
conn = db.cursor(MySQLdb.cursors.DictCursor)
db.select_db('information_schema')
now_time_sql = 'select now() as now_time;'
conn.execute(now_time_sql)
current_time = conn.fetchall()[0]['now_time']
result += str(current_time)
result += '\n'
lock_sql = '''
    SELECT * FROM INNODB_TRX where TIMESTAMPDIFF(SECOND, trx_started, now()) > 1 ORDER BY trx_started LIMIT 1
    '''
running_sql = '''select user,host,db,time,State,info  from PROCESSLIST where TIME > 30 and  COMMAND  <> 'Sleep' and COMMAND <> 'Binlog Dump' and user <> 'system user' and lower(info) not like '%alter%table%' order by TIME DESC LIMIT 1 '''
if sys.argv[1] == 'current_lock':
    conn.execute(lock_sql)
    query_result = conn.fetchall()
    locks = conn.rowcount
    if locks > 0:
        cur_time = datetime.now()
        print (cur_time - query_result[0]['trx_started']).seconds
    else:
        print 0
    # print result
    for item in query_result:
        for each in item:
            # print each
            result +=  str(each)
            result += '\t'
            result += ':==>>>>\t'
            result += str(item[each])
            result += '\n'
        result += '\n'
    result += '\n'
    # print result
    if locks > 0:
        f.write(result)
elif sys.argv[1] == 'current_running':
    conn.execute(running_sql)
    query_result = conn.fetchall()
    thread_count = conn.rowcount 
    if thread_count > 0 :
        f.write(result)
        for item in conn.fetchall():
            f.write(str(item) + '\n')
        f.write('\n\n\n\n')
        print query_result[0]['time']
    else:
        print 0
else:
    print "Usage: %s current_lock | current_running" % sys.argv[0]
conn.close()
db.close()
f.close()


執行腳本

# python innodb_lock_monitor.py current_running
# python innodb_lock_monitor.py current_lock


慢查詢語句會記錄在文本文件中

]# tail -300 /tmp/innodb_lock_output.log
blocking_trx_state	:==>>>>	RUNNING
requesting_SQL	:==>>>>	delete who_cart,who_cart_ext from who_cart left join who_cart_ext on who_cart.rec_id = who_cart_ext.cart_id
         where  who_cart.rec_id=1469638027




向AI問一下細節

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

AI

阳高县| 本溪市| 聂拉木县| 衡山县| 德钦县| 温宿县| 九江市| 资溪县| 昭苏县| 忻州市| 竹北市| 蒲城县| 潼南县| 容城县| 什邡市| 海城市| 丘北县| 铅山县| 晋宁县| 绍兴市| 黄平县| 洪洞县| 进贤县| 眉山市| 八宿县| 莫力| 定边县| 文水县| 平顺县| 唐山市| 延寿县| 天台县| 乌兰察布市| 香河县| 民乐县| 南阳市| 分宜县| 康保县| 茂名市| 闵行区| 临泽县|