linux - Sorting by self column in perf report -
how sort self
column in perf report
output?
$ perf --version perf version 4.0.8-300.fc22.x86_64 $ uname -a linux marko-desktop 4.0.8-300.fc22.x86_64 #1 smp fri jul 10 21:04:56 utc 2015 x86_64 x86_64 x86_64 gnu/linux
data callected with
$ perf record -g -p $(pidof node)
by default, perf
receives --children
parameter creates "children overhead view". consequence, can switch "self overhead" view specifying --no-children
switch
perf report --no-children
there discussion on topic in man page man perf-report
Comments
Post a Comment