summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-14 21:59:07 +0200
committerPaul Buetow <paul@buetow.org>2025-03-14 21:59:07 +0200
commit8dfbdae17cb4ceff1dbe42e5c75486df4637ecc5 (patch)
tree336f59076ccb63a73287b633b6334dfbeb065c56 /Makefile
parentbcd854084554e72708bfcc17457b3063af88dda2 (diff)
switch to inferno flamegraphs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 99c2210..33d3b21 100644
--- a/Makefile
+++ b/Makefile
@@ -36,16 +36,16 @@ world: clean generate all
.PHONY: flames
flames:
- perl ~/git/FlameGraph/flamegraph.pl ior-by-path-count-flamegraph.collapsed \
+ inferno-flamegraph < 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 \
+ inferno-flamegraph < 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 \
+ inferno-flamegraph < 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 \
+ inferno-flamegraph < ior-by-syscall-duration-flamegraph.collapsed \
--title "I/O Syscall Durations" --nametype Path --hash --countname Nanoseconds \
> ior-by-syscall-duration-flamegraph.svg; \