summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-14 22:34:54 +0200
committerPaul Buetow <paul@buetow.org>2025-03-14 22:34:54 +0200
commit1827045051c46db54662e1b4b710504da438f1d1 (patch)
tree49043fc61d5f807507ebeb5f2be218b252f48621 /Makefile
parent25f49e56b3d197390aa250cbbed1b18a2cb05942 (diff)
add file name
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 33d3b21..bf29d22 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,21 @@ world: clean generate all
.PHONY: flames
flames:
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-path-count-flamegraph.collapsed \
+ --title "I/O Syscall Count" --nametype Path --hash \
+ > ior-by-path-count-flamegraph.svg; \
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-path-duration-flamegraph.collapsed \
+ --title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
+ > ior-by-path-duration-flamegraph.svg; \
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-syscall-count-flamegraph.collapsed \
+ --title "I/O Syscall Count" --nametype Path --hash \
+ > ior-by-syscall-count-flamegraph.svg; \
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-syscall-duration-flamegraph.collapsed \
+ --title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
+ > ior-by-syscall-duration-flamegraph.svg; \
+
+.PHONY: inferno
+inferno:
inferno-flamegraph < ior-by-path-count-flamegraph.collapsed \
--title "I/O Syscall Count" --nametype Path --hash \
> ior-by-path-count-flamegraph.svg; \