Perf

From Attie's Wiki
(Difference between revisions)
Jump to: navigation, search
m (Start a Process, and Profile it for 30 Seconds)
m
 
Line 1: Line 1:
 +
[http://www.brendangregg.com/perf.html perf Examples]
 +
 
==Install==
 
==Install==
 
<source lang="bash">
 
<source lang="bash">

Latest revision as of 10:52, 2 March 2015

perf Examples

Contents

[edit] Install

apt-get install linux-tools-common linux-tools-$(uname -r)

[edit] Using

[edit] The Basics

# Unrestrict the kernel symbol maps
echo -n 0 | sudo tee /proc/sys/kernel/kptr_restrict > /dev/null
# Permit users to mlock() more memory - useful when running multiple instances of perf
echo -n 2048 | sudo tee /proc/sys/kernel/perf_event_mlock_kb > /dev/null
 
# start the process, and get its PID
 
# record some data, to perf.data (kill perf when done)
perf record -p ${PID}
 
# review the recorded data
perf report --stdio

[edit] Record a Call Graph

perf record -g -p ${PID}

[edit] Record for 30 seconds

perf record -p ${PID} sleep 30
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox