tldr/pages/linux/perf.md

20 lines
412 B
Markdown
Raw Normal View History

2017-10-20 20:44:29 +03:00
# perf
> Framework for linux performance counter measurements.
2017-10-21 16:05:17 +03:00
- Display basic performance counter stats for a command:
2017-10-20 20:44:29 +03:00
2017-10-21 16:05:17 +03:00
`perf stat {{gcc hello.c}}`
2017-10-20 20:44:29 +03:00
- Display system-wide real time performance counter profile:
`sudo perf top`
2017-10-21 13:37:00 +03:00
- Run a command and record its profile into "perf.data":
2017-10-20 20:44:29 +03:00
`sudo perf record {{command}}`
2017-10-21 13:37:00 +03:00
- Read "perf.data" (created by `perf record`) and display the profile:
2017-10-20 20:44:29 +03:00
`sudo perf report`