├── LICENSE ├── README.md ├── bin ├── bitesize ├── cachestat ├── execsnoop ├── funccount ├── funcgraph ├── funcslower ├── functrace ├── iolatency ├── iosnoop ├── killsnoop ├── kprobe ├── opensnoop ├── perf-stat-hist ├── reset-ftrace ├── syscount ├── tcpretrans ├── tpoint └── uprobe ├── 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 ├── images └── perf-tools_2016.png ├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/README.md -------------------------------------------------------------------------------- /bin/bitesize: -------------------------------------------------------------------------------- 1 | ../disk/bitesize -------------------------------------------------------------------------------- /bin/cachestat: -------------------------------------------------------------------------------- 1 | ../fs/cachestat -------------------------------------------------------------------------------- /bin/execsnoop: -------------------------------------------------------------------------------- 1 | ../execsnoop -------------------------------------------------------------------------------- /bin/funccount: -------------------------------------------------------------------------------- 1 | ../kernel/funccount -------------------------------------------------------------------------------- /bin/funcgraph: -------------------------------------------------------------------------------- 1 | ../kernel/funcgraph -------------------------------------------------------------------------------- /bin/funcslower: -------------------------------------------------------------------------------- 1 | ../kernel/funcslower -------------------------------------------------------------------------------- /bin/functrace: -------------------------------------------------------------------------------- 1 | ../kernel/functrace -------------------------------------------------------------------------------- /bin/iolatency: -------------------------------------------------------------------------------- 1 | ../iolatency -------------------------------------------------------------------------------- /bin/iosnoop: -------------------------------------------------------------------------------- 1 | ../iosnoop -------------------------------------------------------------------------------- /bin/killsnoop: -------------------------------------------------------------------------------- 1 | ../killsnoop -------------------------------------------------------------------------------- /bin/kprobe: -------------------------------------------------------------------------------- 1 | ../kernel/kprobe -------------------------------------------------------------------------------- /bin/opensnoop: -------------------------------------------------------------------------------- 1 | ../opensnoop -------------------------------------------------------------------------------- /bin/perf-stat-hist: -------------------------------------------------------------------------------- 1 | ../misc/perf-stat-hist -------------------------------------------------------------------------------- /bin/reset-ftrace: -------------------------------------------------------------------------------- 1 | ../tools/reset-ftrace -------------------------------------------------------------------------------- /bin/syscount: -------------------------------------------------------------------------------- 1 | ../syscount -------------------------------------------------------------------------------- /bin/tcpretrans: -------------------------------------------------------------------------------- 1 | ../net/tcpretrans -------------------------------------------------------------------------------- /bin/tpoint: -------------------------------------------------------------------------------- 1 | ../system/tpoint -------------------------------------------------------------------------------- /bin/uprobe: -------------------------------------------------------------------------------- 1 | ../user/uprobe -------------------------------------------------------------------------------- /deprecated/README.md: -------------------------------------------------------------------------------- 1 | Deprecated versions of tools. 2 | -------------------------------------------------------------------------------- /deprecated/execsnoop-proc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/deprecated/execsnoop-proc -------------------------------------------------------------------------------- /deprecated/execsnoop-proc.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/deprecated/execsnoop-proc.8 -------------------------------------------------------------------------------- /deprecated/execsnoop-proc_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/deprecated/execsnoop-proc_example.txt -------------------------------------------------------------------------------- /disk/bitesize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/disk/bitesize -------------------------------------------------------------------------------- /examples/bitesize_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/bitesize_example.txt -------------------------------------------------------------------------------- /examples/cachestat_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/cachestat_example.txt -------------------------------------------------------------------------------- /examples/execsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/execsnoop_example.txt -------------------------------------------------------------------------------- /examples/funccount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/funccount_example.txt -------------------------------------------------------------------------------- /examples/funcgraph_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/funcgraph_example.txt -------------------------------------------------------------------------------- /examples/funcslower_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/funcslower_example.txt -------------------------------------------------------------------------------- /examples/functrace_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/functrace_example.txt -------------------------------------------------------------------------------- /examples/iolatency_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/iolatency_example.txt -------------------------------------------------------------------------------- /examples/iosnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/iosnoop_example.txt -------------------------------------------------------------------------------- /examples/killsnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/killsnoop_example.txt -------------------------------------------------------------------------------- /examples/kprobe_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/kprobe_example.txt -------------------------------------------------------------------------------- /examples/opensnoop_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/opensnoop_example.txt -------------------------------------------------------------------------------- /examples/perf-stat-hist_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/perf-stat-hist_example.txt -------------------------------------------------------------------------------- /examples/reset-ftrace_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/reset-ftrace_example.txt -------------------------------------------------------------------------------- /examples/syscount_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/syscount_example.txt -------------------------------------------------------------------------------- /examples/tcpretrans_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/tcpretrans_example.txt -------------------------------------------------------------------------------- /examples/tpoint_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/tpoint_example.txt -------------------------------------------------------------------------------- /examples/uprobe_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/examples/uprobe_example.txt -------------------------------------------------------------------------------- /execsnoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/execsnoop -------------------------------------------------------------------------------- /fs/cachestat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/fs/cachestat -------------------------------------------------------------------------------- /images/perf-tools_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/images/perf-tools_2016.png -------------------------------------------------------------------------------- /iolatency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/iolatency -------------------------------------------------------------------------------- /iosnoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/iosnoop -------------------------------------------------------------------------------- /kernel/funccount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/kernel/funccount -------------------------------------------------------------------------------- /kernel/funcgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/kernel/funcgraph -------------------------------------------------------------------------------- /kernel/funcslower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/kernel/funcslower -------------------------------------------------------------------------------- /kernel/functrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/kernel/functrace -------------------------------------------------------------------------------- /kernel/kprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/kernel/kprobe -------------------------------------------------------------------------------- /killsnoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/killsnoop -------------------------------------------------------------------------------- /man/man8/bitesize.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/bitesize.8 -------------------------------------------------------------------------------- /man/man8/cachestat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/cachestat.8 -------------------------------------------------------------------------------- /man/man8/execsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/execsnoop.8 -------------------------------------------------------------------------------- /man/man8/funccount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/funccount.8 -------------------------------------------------------------------------------- /man/man8/funcgraph.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/funcgraph.8 -------------------------------------------------------------------------------- /man/man8/funcslower.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/funcslower.8 -------------------------------------------------------------------------------- /man/man8/functrace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/functrace.8 -------------------------------------------------------------------------------- /man/man8/iolatency.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/iolatency.8 -------------------------------------------------------------------------------- /man/man8/iosnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/iosnoop.8 -------------------------------------------------------------------------------- /man/man8/killsnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/killsnoop.8 -------------------------------------------------------------------------------- /man/man8/kprobe.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/kprobe.8 -------------------------------------------------------------------------------- /man/man8/opensnoop.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/opensnoop.8 -------------------------------------------------------------------------------- /man/man8/perf-stat-hist.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/perf-stat-hist.8 -------------------------------------------------------------------------------- /man/man8/reset-ftrace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/reset-ftrace.8 -------------------------------------------------------------------------------- /man/man8/syscount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/syscount.8 -------------------------------------------------------------------------------- /man/man8/tcpretrans.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/tcpretrans.8 -------------------------------------------------------------------------------- /man/man8/tpoint.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/tpoint.8 -------------------------------------------------------------------------------- /man/man8/uprobe.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/man/man8/uprobe.8 -------------------------------------------------------------------------------- /misc/perf-stat-hist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/misc/perf-stat-hist -------------------------------------------------------------------------------- /net/tcpretrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/net/tcpretrans -------------------------------------------------------------------------------- /opensnoop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/opensnoop -------------------------------------------------------------------------------- /syscount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/syscount -------------------------------------------------------------------------------- /system/tpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/system/tpoint -------------------------------------------------------------------------------- /tools/reset-ftrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/tools/reset-ftrace -------------------------------------------------------------------------------- /user/uprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendangregg/perf-tools/HEAD/user/uprobe --------------------------------------------------------------------------------