Skip to content
cheatsheet
home
/
cv
/
weblog
/
cheatsheet
/
proxy
/
vpn
/
status
/
links
EN
RU
☾
New version available
reload
×
cheatsheet
/
perf
/
List available events
List available events
perf
List all supported perf events on current system
perf list
⎘ copy
#perf
#profiling
#events
more perf
all 17 commands →
Stat command
perf stat ls -la
Record with specific event
perf record -e cache-misses ./my_app
Top-like live view
perf top
Annotate hot functions
perf annotate
Flamegraph data collection
perf record -F 99 -ag -- sleep 30 && perf script > out.perf