aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-19 10:38:35 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-19 10:38:35 +0200
commit51bb37254d19149052239c664dfaeb63e7711f84 (patch)
tree9f58066088c907358beffc397ea4a267d2f78b6b /scripts
parenttest: refactor command line options (diff)
downloadcimple-51bb37254d19149052239c664dfaeb63e7711f84.tar.gz
cimple-51bb37254d19149052239c664dfaeb63e7711f84.zip
flamegraph.sh: reduce graph width
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/flamegraph.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/flamegraph.sh b/scripts/flamegraph.sh
index ae9129c..9a7316f 100755
--- a/scripts/flamegraph.sh
+++ b/scripts/flamegraph.sh
@@ -48,7 +48,7 @@ make_graph() {
wait "$record_pid" || true
perf script -i "$output_dir/perf.data" > "$output_dir/perf.out"
stackcollapse-perf.pl "$output_dir/perf.out" > "$output_dir/perf.folded"
- flamegraph.pl --width 2400 "$output_dir/perf.folded" > "$output_path"
+ flamegraph.pl --width 1600 "$output_dir/perf.folded" > "$output_path"
}
record_pid=''