mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
13 lines
291 B
Markdown
13 lines
291 B
Markdown
|
|
# Extras
|
||
|
|
|
||
|
|
## Flamegraph
|
||
|
|
|
||
|
|
```shell
|
||
|
|
git clone https://github.com/brendangregg/FlameGraph.git
|
||
|
|
cd FlameGraph
|
||
|
|
sudo perf record -F 99 -a -g -- sleep 60
|
||
|
|
perf script > out.perf
|
||
|
|
./stackcollapse-perf.pl out.perf > out.folded
|
||
|
|
./flamegraph.pl --title LibreQoS --width 7200 out.folded > libreqos.svg
|
||
|
|
```
|