A simple cargo plugin that generates a flamegraph for a given workload.
Uses perf on linux and dtrace otherwise.
Windows is getting dtrace support, so if you try this out please let us know how it goes :D
cargo install flamegraph
This will make the cargo-flamegraph
binary
available in your cargo binary directory.
On most systems this is usually something
like ~/.cargo/bin
.
```
cargo build
cargo flamegraph
cargo flamegraph --release
cargo flamegraph --bin=stress2
cargo flamegraph --exec="/path/to/my/binary --some-arg 5" ```
``` USAGE: cargo flamegraph [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -r, --release Activate release mode -V, --version Prints version information
OPTIONS:
-b, --bin
To enable perf without running as root, you may
lower the perf_event_paranoid
value in proc
to an appropriate level for your environment.
The most permissive value is -1
but may not
be acceptable for your security needs etc...
bash
echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid