summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-12 23:18:24 +0200
committerPaul Buetow <paul@buetow.org>2025-03-12 23:18:24 +0200
commit507073a912c23bd94a425b2b05779c65bee676e2 (patch)
tree7f0102c8839abf46531783a71d2c8a6f8778673b /Makefile
parent7c89967f1d41b45f44cc08c879779bdf7d2b73be (diff)
improve flame cmds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 32452b0..26c74a7 100644
--- a/Makefile
+++ b/Makefile
@@ -35,5 +35,9 @@ world: clean generate all
.PHONY: flames
flames:
- perl ~/git/FlameGraph/flamegraph.pl ior-by-count-flamegraph.collapsed --hash > ior-by-count-flamegraph.svg
- perl ~/git/FlameGraph/flamegraph.pl ior-by-duration-flamegraph.collapsed --hash > ior-by-duration-flamegraph.svg
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-count-flamegraph.collapsed \
+ --title "I/O Syscall Count" --nametype Path --hash \
+ > ior-by-count-flamegraph.svg
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-duration-flamegraph.collapsed \
+ --title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
+ > ior-by-duration-flamegraph.svg