前提:确保Archery正确部署和使用。
1、安装pt-query-digest
2、创建脚本/home/mysql-slow/analysis_slow_query.sh
chmod +x /home/mysql-slow/analysis_slow_query.sh
3、创建定时任务
*/30 * * * * /bin/sh /home/mysql-slow/analysis_slow_query.sh
4、archery配置实例
5、执行测试脚本
/home/mysql-slow/analysis_slow_query.sh
6、刷新archery页面,选择相应的实例
补充: #!/bin/bash
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd ${DIR}
#配置Archery数据库的连接地址
archery_db_host="172.0.0.1"
archery_db_port=3306
archery_db_user="root"
archery_db_password="123456"
archery_db_database="archery"
#被分析实例的慢日志位置,建议定期清理日志文件,否则会影响分析效率
slowquery_file="/data/mysql/log/slowlog/mysql-slow.log"
#slowquery_file="/data/mysql-slow/mysql_slow.log"
#pt-query-digest可执行文件路径
pt_query_digest="pt-query-digest"
#被分析实例的连接信息
hostname="172.0.0.0.1:3306" # 需要和Archery实例配置中的内容保持一致,用于筛选,配置错误会导致数据无法展示
#获取上次分析时间,初始化时请删除last_analysis_time_$hostname文件,可分析全部日志数据
if [[ -s last_analysis_time_${hostname} ]]; then
last_analysis_time=`cat last_analysis_time_${hostname}`
else
#last_analysis_time='1000-01-01 00:00:00'
last_analysis_time='2022-09-18 00:00:00'
fi
#收集日志
#RDS需要增加--no-version-check选项
${pt_query_digest} \
--user=${archery_db_user} --password=${archery_db_password} --port=${archery_db_port} \
--review h=${archery_db_host},D=${archery_db_database},t=mysql_slow_query_review \
--history h=${archery_db_host},D=${archery_db_database},t=mysql_slow_query_review_history \
#NAME?
--since "$last_analysis_time" \
--filter="\$event->{Bytes} = length(\$event->{arg}) and \$event->{hostname}=\"$hostname\" and \$event->{client}=\$event->{ip} " \
${slowquery_file} > /tmp/analysis_slow_query.log
if [[ $? -ne 0 ]]; then
echo "failed"
else
echo `date +"%Y-%m-%d %H:%M:%S"`>last_analysis_time_${hostname}
fi




