Linux内核调试工具 ftrace

时间:2021-11-14 10:58:41

Linux内核调试工具 ftrace

 


1        tracepoint

tracing目录位于/sys/kernel/debug/tracing/

2        系统tracing

/sys/kernel/debug/tracing/events/block

 

1.  挂载debug文件系统

mount -t  debugfs  nodev /debug

2. 查看可供使用的tracepoints

cat /debug/tracing/available_events

3.   安装trace-cmd,安装命令:yum installtrace-cmd

4. 一般使用trace-cmd的命令序列为:reset-->record-->stop

5. trace-cmd start  -e ext4*

6. trace-cmd stop  -e ext4*

7. cat /sys/kernel/debug/tracing/trace

8. trace-cmd reset

trace-cmd reset 会情况之前的记录

 

3        参考

http://www.360doc.com/content/16/0126/13/10366845_530659813.shtml