本文将详细解释如何在linux中使用strace跟踪mysql执行语句。边肖觉得挺实用的,就分享给大家参考。希望你看完这篇文章能有所收获。
Strace是Linux环境下的程序调试工具,用于监控应用程序使用的系统调用及其接收到的系统信息。运行时跟踪程序的整个生命周期,输出每个系统调用的名称、参数、返回值和执行时间。
strace常用参数:
-p跟踪指定的过程。
fork子进程系统调用-f跟踪。
-f试图跟踪vfork子流程的系统调优入口,当vfork以-F出现时不会被跟踪。
-o filename默认strace将结果输出到stdout。使用-o,您可以将输出写入文件名文件。
-ff通常与-o选项一起使用,不同进程(子进程)生成的系统调用输出到filename。PID文件。
-r打印每个系统调用的相对时间。
-t在输出中的每一行之前添加时间信息。-tt时间被确定为微秒级。您也可以使用-ttt打印相对时间。
-v输出所有系统调用。默认情况下,一些频繁调用的系统调用不会被输出。
-s指定每个输出字符串的长度,默认情况下为32。所有文件名总是输出。
-c统计每次系统调用的执行时间、调用次数和错误次数。
-e expr输出过滤器,通过表达式,可以过滤掉不需要的输出。
1.跟踪多个流程的策略:
当有多个子流程时,比如php-fpm、nginx等。用strace追踪非常不方便。您可以使用以下方法跟踪所有子流程。
#vim/root/。bashrc//添加以下内容。
functionstraceall{
strace$(pidof'${1}'|sed的/\([0-9]*\)/-p\1/g ')
}
#source/root/。bashrc
执行:
#traceallphp-fpm
2.跟踪网络服务器系统调用。
# strace-F-F-s 1024-onginx-strace/usr/local/nginx/sbin/nginx-c/usr/local/nginx/conf/nginx . conf
# strace-F-F-ophp-fpm-strace/usr/local/PHP/sbin/PHP-fpm-y/usr/local/PHP/etc/PHP-fpm . conf
3.跟踪mysql执行语句。
# strace-F-F-ff-omisqld-strace-s 1024-pmysql _ PID
#找到。/-name ' mysqld-strace * '-typef-print | xargsgrep-n ' select。*FROM '
4.董是什么——收视节目在做什么?
#!/bin/bash
# thiscriptisfrom http://poormnsprofiler . org/
nsamples=1
睡眠时间=0
pid=$(pidof$1)
forxin$(seq1$nsamples)
做
gdb-ex ' setpediation0 '-ex ' threadapplyalbt '-batch-p $ PID
睡眠$睡眠时间
完成|\
啊
BEGIN { s=}
/^thread/{prints;s=}
/^\#/{if(s!=''){s=s ',' $4}否则{s=$4}}
END{prints}'|\
sort|uniq-c|sort-r-n-k1,1
输出:
#profiler.shmysqld
727 pthread _ cond _ wait @ @ GLIBC _ 2 . 3 . 2,cache_thread,put_in_cache=true),handle_one_connection,start_thread,
4 thread _ cond _ wait @ @ GLIBC _ 2 . 3 . 2,os_event_wait_low,os_aio_simulated_handle,fil_aio_wait,io_handler_thread,start_thread,
4?
2read,my_real_read,my_net_read,do_command,handle_one_connection,start_thread,
1 thread _ cond _ wait @ @ GLIBC _ 2 . 3 . 2,os_event_wait_low,srv_master_thread,start_thread,
1 thread _ cond _ wait @ @ GLIBC _ 2 . 3 . 2,MYSQL _ BIN _ LOg : Wait _ for _ update,mysql_binlog_send,dispatch_command,do_command,handle_one_connection,start_thread,
1do_sigwait,sigwait,signal _ hand,start_thread,
1这篇关于“如何在linux中使用strace跟踪mysql执行语句”的文章已经分享到这里了,希望。
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/58419.html