资 源 简 介
分析mysql慢日志查询
使用说明
Usage: mysqlslow OPTION... FILE...
mysqlslow - Parse, analyze MySQL slow logs
-n Do not display rows examined less than n, default 100000
-t Show the number of the top sqls, default 10
--help display this help and exit
安装步骤
1、把mysqlslow拷贝到linux环境变量路径下(如/usr/bin)
2、检查mysqlslow头部PHP执行路径是否正确
如:#!/usr/local/php/bin/php
使用示例
1、简单使用
mysqlslow slow.log
2、扫描行数大于1000的慢查询日志
mysqlslow -n1000 slow.log
3、显示最耗时的前20条SQL
mysqlslow -t20 slow.log