MySQL 数据库慢查询日志分析脚本

 

这个脚本是基于pt-query-digest做的日志分析脚本,变成可视化的格式。

 

目录结构是

./mysql_data/log
./mysql_data/log/tmp
./slow_query

 

# coding = gbk
__author__ = 'T_two'


import datetime
import os


IP = '111'
dirname = os.path.dirname(os.path.abspath(__file__))
# 解析后的目录名
slow_query= os.path.join(dirname, 'slow_query')
# pt-query-digest前的目录的
mysql_data = os.path.join(os.path.join(dirname, 'mysql_data'), 'log')
# pt-query-digest后的目录的
tmp = os.path.join(mysql_data, 'tmp')


def getYesterday():
    today=datetime.date.today()
    yesterday = str(today - datetime.timedelta(days=1))
    return yesterday

def getLog(yes_time, slow_query):
    # 对日志进行pt-query-digest分析
    before_name = yes_time.replace('-', '') + '-' + 'slow-query.log'
    # pt-query-digest之前的日志 b_filename
    b_filename = os.path.join(mysql_data, before_name)
    # print(b_filename)
    # pt-query-digest之后的日志 a_filename
    after_name = yes_time.replace('-', '') + '-' + IP + '-' + 'slow-query.log'
    a_filename = os.path.join(tmp, after_name)
    # print(a_filename)
    # 最终格式化的日志 e_filename
    end_name = IP + '-slow-log-' + yes_time + '.txt'
    e_filename = os.path.join(slow_query, end_name)
    #print(e_filename)
    return b_filename,a_filename,e_filename

def getSlowquery(b_filename,a_filename,e_filename):
    print('File format starting...')
    #os.system('pt-query-digest '+ b_filename + '>' + a_filename)

    a_slow_query = open(a_filename, 'r', encoding = 'utf8')
    e_slow_query = open(e_filename, 'w', encoding = 'utf8')
    _line = ''
    line = a_slow_query.readlines()[20:]            # 对文件切片,去除不需要的前20行。
    for line in line:
        line = line.strip()
        # 提取需要的行
        if  line.startswith('#')   and '# Hosts' not in line and '# Users' not in line and '# Databases' not in line  and  'byte' not in line \
                and '# Count' not in line  and '# Exec time' not in line :
            pass
        elif line == '':
            pass
        else:
            # 序列号
            if  '# Query' in line: line = ('\nNO.%s' % line.split()[2])
            # 执行次数
            elif '# Count' in line: line = ('执行次数: %s' % line.split()[3])
            #执行时间
            elif '# Exec time' in line: line = ('执行时间 Total: %s  min: %s  max: %s' % (line.split()[4],line.split()[5],line.split()[6],))
            # DB
            elif '# Databases' in line: line = ('库名: %s' % line.split()[2])
            # 源IP
            elif '# Host' in line:line = ('源IP: %s' % line.split()[2])
            # 用户名
            elif '# User' in line: line = ('用户名: %s' % line.split()[2])

            _line = _line + line + '\n'

    e_slow_query.write(_line)
    a_slow_query.close()
    e_slow_query.close()
    # 将文件拷贝到web目录下
    os.system('cp ' + e_filename + ' ' + web_dir)
    # 删除10天之前的数据
    os.system('find ' + str(slow_query) + ' -mtime +10 | xargs rm -rf ')
    os.system('find ' + mysql_data + ' -mtime +10 | xargs rm -rf ')
    os.system('find ' + tmp + ' -mtime +10 | xargs rm -rf ')


    print ('File format end...')

if __name__ == '__main__':
    yes_time = getYesterday()
    b_filename,a_filename, e_filename = getLog(yes_time, slow_query)
    getSlowquery(b_filename,a_filename,e_filename)

  

 

解析之后显示的结果:

 

转载于:https://www.cnblogs.com/yujiaershao/p/10237770.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值