gitextract_cv8l2gg4/ ├── LICENSE ├── README.md ├── deprecated/ │ ├── README.md │ ├── execsnoop-proc │ ├── execsnoop-proc.8 │ └── execsnoop-proc_example.txt ├── disk/ │ └── bitesize ├── examples/ │ ├── bitesize_example.txt │ ├── cachestat_example.txt │ ├── execsnoop_example.txt │ ├── funccount_example.txt │ ├── funcgraph_example.txt │ ├── funcslower_example.txt │ ├── functrace_example.txt │ ├── iolatency_example.txt │ ├── iosnoop_example.txt │ ├── killsnoop_example.txt │ ├── kprobe_example.txt │ ├── opensnoop_example.txt │ ├── perf-stat-hist_example.txt │ ├── reset-ftrace_example.txt │ ├── syscount_example.txt │ ├── tcpretrans_example.txt │ ├── tpoint_example.txt │ └── uprobe_example.txt ├── execsnoop ├── fs/ │ └── cachestat ├── iolatency ├── iosnoop ├── kernel/ │ ├── funccount │ ├── funcgraph │ ├── funcslower │ ├── functrace │ └── kprobe ├── killsnoop ├── man/ │ └── man8/ │ ├── bitesize.8 │ ├── cachestat.8 │ ├── execsnoop.8 │ ├── funccount.8 │ ├── funcgraph.8 │ ├── funcslower.8 │ ├── functrace.8 │ ├── iolatency.8 │ ├── iosnoop.8 │ ├── killsnoop.8 │ ├── kprobe.8 │ ├── opensnoop.8 │ ├── perf-stat-hist.8 │ ├── reset-ftrace.8 │ ├── syscount.8 │ ├── tcpretrans.8 │ ├── tpoint.8 │ └── uprobe.8 ├── misc/ │ └── perf-stat-hist ├── net/ │ └── tcpretrans ├── opensnoop ├── syscount ├── system/ │ └── tpoint ├── tools/ │ └── reset-ftrace └── user/ └── uprobe