perf: add link and -p example (#7229)

beep
Emanuele Rocca 2021-10-26 13:19:43 +02:00 committed by GitHub
parent ae3c1b294e
commit 5890df3641
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# perf
> Framework for Linux performance counter measurements.
> More information: <https://perf.wiki.kernel.org>.
- Display basic performance counter stats for a command:
@ -14,6 +15,10 @@
`sudo perf record {{command}}`
- Record the profile of an existing process into `perf.data`:
`sudo perf record -p {{pid}}`
- Read `perf.data` (created by `perf record`) and display the profile:
`sudo perf report`