mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
8 lines
No EOL
341 B
Bash
Executable file
8 lines
No EOL
341 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Profile
|
|
perf record --call-graph=dwarf,16384 -e cpu-clock -F 997 target/release/aquatic_udp
|
|
|
|
# Generate flamegraph (make sure nginx is installed for stdout path)
|
|
# Info: https://gist.github.com/dlaehnemann/df31787c41bd50c0fe223df07cf6eb89
|
|
perf script | stackcollapse-perf.pl | c++filt | flamegraph.pl > /var/www/html/flame.svg |