Lines Matching refs:To
12 To see list of saved events and attributes: perf evlist -v
14 To see callchains in a more compact form: perf report -g folded
18 To show assembler sample contexts use perf record -b / perf script -F +brstackinsn --xed
20 To count events in every 1000 msec: perf stat -I 1000
25 To record callchains for each sample: perf record -g
26 To record every process run by a user: perf record -u <user>
28 To change sampling frequency to 100 Hz: perf record -F 100
36 To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`
37 To report cacheline events from previous recording: perf c2c report
38 To browse sample contexts use perf report --sample 10 and select in context menu
39 To separate samples by time use perf report --sort time,overhead,sym
40 To set sample time separation other than 100ms with --sort time use --time-quantum
42 To show IPC for sampling periods use perf record -e '{cycles,instructions}:S' and then browse conte…
43 To show context switches in perf report sample context add --switch-events to perf record.