diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-10-25 19:33:09 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-10-25 19:33:09 -0700 |
| commit | 15545d95dc1ea55240f4be08c65f4ec64c46f49f (patch) | |
| tree | cbc23d56b1fa013d22124033c83f9b51e599831b /tools/perf-flamegraph-pid/perf-flamegraph-pid.sh | |
| parent | ref(ops/github): finished the migration of my repositories (diff) | |
| download | infra-15545d95dc1ea55240f4be08c65f4ec64c46f49f.tar.gz | |
ref(tools/perf-flamegraph): move to a proper shell script
I don't want to inline shell scripts inside nix configuration, as it
prevents me to use `shellcheck` to validate them for example.
The script is now moved into the tool directory, and is a tiny bit more
flexible, so that I can run it as my own user.
Diffstat (limited to 'tools/perf-flamegraph-pid/perf-flamegraph-pid.sh')
| -rwxr-xr-x | tools/perf-flamegraph-pid/perf-flamegraph-pid.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/perf-flamegraph-pid/perf-flamegraph-pid.sh b/tools/perf-flamegraph-pid/perf-flamegraph-pid.sh new file mode 100755 index 0000000..141ceec --- /dev/null +++ b/tools/perf-flamegraph-pid/perf-flamegraph-pid.sh @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +set -euo pipefail + +OUT_DIR="${HOME}/workspace/debug/flamegraph" +OUT_DATA="${OUT_DIR}/$(date +%y%m%d-%H%M%S).data" +OUT_SVG="${OUT_DIR}/$(date +%y%m%d-%H%M%S).svg" + +mkdir -p "${OUT_DIR}" + +# record the data with perf. We need to run this with sudo to get all +# the privileges we need. +sudo perf record -g --call-graph dwarf --freq max --output "${OUT_DATA}" "$@" + +# give me ownership of the file +sudo chown "${USER}" "${OUT_DATA}" + +perf script --input "${OUT_DATA}" | \ + stackcollapse-perf.pl | \ + flamegraph.pl > "${OUT_SVG}" |
