summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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; \