c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
12 lines
410 B
Nix
12 lines
410 B
Nix
# Script that collects perf timing for the execution of a command and writes a
|
|
# flamegraph to stdout
|
|
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellScriptBin "perf-flamegraph" ''
|
|
set -euo pipefail
|
|
|
|
${pkgs.linuxPackages.perf}/bin/perf record -g --call-graph dwarf -F max "$@"
|
|
${pkgs.linuxPackages.perf}/bin/perf script \
|
|
| ${pkgs.flamegraph}/bin/stackcollapse-perf.pl \
|
|
| ${pkgs.flamegraph}/bin/flamegraph.pl
|
|
''
|