1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/perf.md

20 lines
412 B
Markdown
Raw Normal View History

2017-10-20 23:14:29 +05:30
# perf
> Framework for Linux performance counter measurements.
2017-10-20 23:14:29 +05:30
2017-10-21 18:35:17 +05:30
- Display basic performance counter stats for a command:
2017-10-20 23:14:29 +05:30
2017-10-21 18:35:17 +05:30
`perf stat {{gcc hello.c}}`
2017-10-20 23:14:29 +05:30
- Display system-wide real-time performance counter profile:
2017-10-20 23:14:29 +05:30
`sudo perf top`
- Run a command and record its profile into `perf.data`:
2017-10-20 23:14:29 +05:30
`sudo perf record {{command}}`
- Read `perf.data` (created by `perf record`) and display the profile:
2017-10-20 23:14:29 +05:30
`sudo perf report`