summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-14 20:26:31 +0200
committerPaul Buetow <paul@buetow.org>2025-03-14 20:26:31 +0200
commit092ba747e516620054852f012dbc7d00031683dd (patch)
treec3e2d57c371fc1e15c3fb5e7eef76c57661430ea /Makefile
parenta4948d9fb1aded11e3111f3730b4e3e4e5bd540c (diff)
add sycall on bottom
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 26c74a7..668a877 100644
--- a/Makefile
+++ b/Makefile
@@ -35,9 +35,15 @@ world: clean generate all
.PHONY: flames
flames:
- perl ~/git/FlameGraph/flamegraph.pl ior-by-count-flamegraph.collapsed \
+ perl ~/git/FlameGraph/flamegraph.pl ior-by-path-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 \
+ > 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-duration-flamegraph.svg
+ > 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; \