blob: 5aff97996dd3f8946faca26a73d3b2a309b51f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
.\" -*- nroff -*-
.TH TAPSET::PERF 3stap "" "IBM"
.SH NAME
tapset::perf \- systemtap perf probe points
.\" macros
.de SAMPLE
.br
.RS
.nf
.nh
..
.de ESAMPLE
.hy
.fi
.RE
..
.SH DESCRIPTION
This family of probe points is used to probe "perf events"
on suitably configured kernels (2.6.33+). It contains a
number of aliases for the ABI-specified event type/config
tuples.
.TP
.B perf.hw.*
A variety of hardware events, as generalized by the kernel. These
generally require running on bare hardware with selected processors.
.SAMPLE
probe perf.hw.cpu_cycles
probe perf.hw.instructions
probe perf.hw.cache_references
probe perf.hw.cache_misses
probe perf.hw.branch_instructions
probe perf.hw.branch_misses
probe perf.hw.bus_cycles
.ESAMPLE
.TP
.B perf.sw.*
Special "software" events provided by the kernel. These sometimes work
in virtualized environments and with more processor architectures.
.SAMPLE
probe perf.sw.cpu_clock
probe perf.sw.task_clock
probe perf.sw.page_faults
probe perf.sw.context_switches
probe perf.sw.cpu_migrations
probe perf.sw.page_faults_min
probe perf.sw.page_faults_maj
probe perf.sw.alignment_faults
probe perf.sw.emulation_faults
.ESAMPLE
.SH SEE ALSO
.IR stap (1),
.IR stapprobes (3stap)
|