Shell script analyzes mysql slow query log (slow log) and mysqlslow

Source: Internet
Author: User
Tags mysql slow query log

Shell script analyzes mysql slow query log (slow log) and mysqlslow

Percona pt-query-digest is used to analyze slow query logs. The analysis and statistics results are clear.

#! /Bin/sh


Slowlog_path =/root/slow_query_log
Everyslow =/tmp/everydayslow
# Download pt-query-digest
Pt_digest =/root/pt-query-digest

Start_string = $ (grep 'date -- date = "0 days ago" + % y % m % d' $ {slowlog_path} | head-1)
Start_pos = $ (grep-n 'date -- date = "0 days ago" + % y % m % d' $ {slowlog_path} | head-1 | awk-F: '{print $1 }')
End_pos = $ (grep-n 'date -- date = "0 days ago" + % y % m % d' $ {slowlog_path} | tail-1 | awk-F: '{print $1 }')
Print_linecnt =$ (expr $ {end_pos}-$ {start_pos })

# Analyze logs if start_string is not empty
If [-z "$ {start_string}"];
Then exit 1
Else
Grep-I "$ {start_string}"-A $ {print_linecnt }$ {slowlog_path }>$ {everyslow}
/Usr/bin/perl $ {pt_digest }$ {everyslow}>/tmp/anaslowlog _ 'date + % Y-% m-% d'
Fi

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.