blob: f7e1fcc0953c81e4407d0e6f0542317e10426890 [file] [log] [blame]
Changbin Du73d98122018-02-17 13:39:42 +08001=============
2Event Tracing
3=============
Theodore Ts'oabd41442009-04-11 15:51:18 -04004
Changbin Du73d98122018-02-17 13:39:42 +08005:Author: Theodore Ts'o
6:Updated: Li Zefan and Tom Zanussi
Theodore Ts'oabd41442009-04-11 15:51:18 -04007
Li Zefan143c1452009-05-19 14:43:15 +080081. Introduction
9===============
Theodore Ts'oabd41442009-04-11 15:51:18 -040010
Mauro Carvalho Chehabec158722018-05-08 18:54:36 -030011Tracepoints (see Documentation/trace/tracepoints.rst) can be used
Theodore Ts'oabd41442009-04-11 15:51:18 -040012without creating custom kernel modules to register probe functions
13using the event tracing infrastructure.
14
15Not all tracepoints can be traced using the event tracing system;
16the kernel developer must provide code snippets which define how the
17tracing information is saved into the tracing buffer, and how the
Li Zefan143c1452009-05-19 14:43:15 +080018tracing information should be printed.
Theodore Ts'oabd41442009-04-11 15:51:18 -040019
Li Zefan143c1452009-05-19 14:43:15 +0800202. Using Event Tracing
21======================
22
232.1 Via the 'set_event' interface
24---------------------------------
Theodore Ts'oabd41442009-04-11 15:51:18 -040025
26The events which are available for tracing can be found in the file
GeunSik Lim52ad51e2009-09-07 21:37:17 +090027/sys/kernel/debug/tracing/available_events.
Theodore Ts'oabd41442009-04-11 15:51:18 -040028
29To enable a particular event, such as 'sched_wakeup', simply echo it
Changbin Du73d98122018-02-17 13:39:42 +080030to /sys/kernel/debug/tracing/set_event. For example::
Theodore Ts'oabd41442009-04-11 15:51:18 -040031
GeunSik Lim52ad51e2009-09-07 21:37:17 +090032 # echo sched_wakeup >> /sys/kernel/debug/tracing/set_event
Theodore Ts'oabd41442009-04-11 15:51:18 -040033
Changbin Du73d98122018-02-17 13:39:42 +080034.. Note:: '>>' is necessary, otherwise it will firstly disable all the events.
Theodore Ts'oabd41442009-04-11 15:51:18 -040035
36To disable an event, echo the event name to the set_event file prefixed
Changbin Du73d98122018-02-17 13:39:42 +080037with an exclamation point::
Theodore Ts'oabd41442009-04-11 15:51:18 -040038
GeunSik Lim52ad51e2009-09-07 21:37:17 +090039 # echo '!sched_wakeup' >> /sys/kernel/debug/tracing/set_event
Theodore Ts'oabd41442009-04-11 15:51:18 -040040
Changbin Du73d98122018-02-17 13:39:42 +080041To disable all events, echo an empty line to the set_event file::
Theodore Ts'oabd41442009-04-11 15:51:18 -040042
GeunSik Lim52ad51e2009-09-07 21:37:17 +090043 # echo > /sys/kernel/debug/tracing/set_event
Li Zefan143c1452009-05-19 14:43:15 +080044
Jonathan Corbet6234c7b2018-03-07 10:44:08 -070045To enable all events, echo ``*:*`` or ``*:`` to the set_event file::
Li Zefan143c1452009-05-19 14:43:15 +080046
GeunSik Lim52ad51e2009-09-07 21:37:17 +090047 # echo *:* > /sys/kernel/debug/tracing/set_event
Theodore Ts'oabd41442009-04-11 15:51:18 -040048
49The events are organized into subsystems, such as ext4, irq, sched,
50etc., and a full event name looks like this: <subsystem>:<event>. The
51subsystem name is optional, but it is displayed in the available_events
52file. All of the events in a subsystem can be specified via the syntax
Jonathan Corbet6234c7b2018-03-07 10:44:08 -070053``<subsystem>:*``; for example, to enable all irq events, you can use the
Changbin Du73d98122018-02-17 13:39:42 +080054command::
Theodore Ts'oabd41442009-04-11 15:51:18 -040055
GeunSik Lim52ad51e2009-09-07 21:37:17 +090056 # echo 'irq:*' > /sys/kernel/debug/tracing/set_event
Theodore Ts'oabd41442009-04-11 15:51:18 -040057
Li Zefan143c1452009-05-19 14:43:15 +0800582.2 Via the 'enable' toggle
59---------------------------
Theodore Ts'oabd41442009-04-11 15:51:18 -040060
GeunSik Lim52ad51e2009-09-07 21:37:17 +090061The events available are also listed in /sys/kernel/debug/tracing/events/ hierarchy
Li Zefan143c1452009-05-19 14:43:15 +080062of directories.
Theodore Ts'oabd41442009-04-11 15:51:18 -040063
Changbin Du73d98122018-02-17 13:39:42 +080064To enable event 'sched_wakeup'::
Theodore Ts'oabd41442009-04-11 15:51:18 -040065
GeunSik Lim52ad51e2009-09-07 21:37:17 +090066 # echo 1 > /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable
Theodore Ts'oabd41442009-04-11 15:51:18 -040067
Changbin Du73d98122018-02-17 13:39:42 +080068To disable it::
Theodore Ts'oabd41442009-04-11 15:51:18 -040069
GeunSik Lim52ad51e2009-09-07 21:37:17 +090070 # echo 0 > /sys/kernel/debug/tracing/events/sched/sched_wakeup/enable
Theodore Ts'oabd41442009-04-11 15:51:18 -040071
Changbin Du73d98122018-02-17 13:39:42 +080072To enable all events in sched subsystem::
Theodore Ts'oabd41442009-04-11 15:51:18 -040073
GeunSik Lim52ad51e2009-09-07 21:37:17 +090074 # echo 1 > /sys/kernel/debug/tracing/events/sched/enable
Theodore Ts'oabd41442009-04-11 15:51:18 -040075
Changbin Du73d98122018-02-17 13:39:42 +080076To enable all events::
Theodore Ts'oabd41442009-04-11 15:51:18 -040077
GeunSik Lim52ad51e2009-09-07 21:37:17 +090078 # echo 1 > /sys/kernel/debug/tracing/events/enable
Theodore Ts'oabd41442009-04-11 15:51:18 -040079
Li Zefan143c1452009-05-19 14:43:15 +080080When reading one of these enable files, there are four results:
Theodore Ts'oabd41442009-04-11 15:51:18 -040081
Changbin Du73d98122018-02-17 13:39:42 +080082 - 0 - all events this file affects are disabled
83 - 1 - all events this file affects are enabled
84 - X - there is a mixture of events enabled and disabled
85 - ? - this file does not affect any event
Theodore Ts'oabd41442009-04-11 15:51:18 -040086
Li Zefan020e5f82009-07-01 10:47:05 +0800872.3 Boot option
88---------------
89
Changbin Du73d98122018-02-17 13:39:42 +080090In order to facilitate early boot debugging, use boot option::
Li Zefan020e5f82009-07-01 10:47:05 +080091
92 trace_event=[event-list]
93
Li Zefan03d646e2009-12-21 14:27:24 +080094event-list is a comma separated list of events. See section 2.1 for event
95format.
Li Zefan020e5f82009-07-01 10:47:05 +080096
Li Zefan143c1452009-05-19 14:43:15 +0800973. Defining an event-enabled tracepoint
98=======================================
Theodore Ts'oabd41442009-04-11 15:51:18 -040099
Li Zefan143c1452009-05-19 14:43:15 +0800100See The example provided in samples/trace_events
Theodore Ts'oabd41442009-04-11 15:51:18 -0400101
Tom Zanussi95b69602009-09-10 23:13:51 -05001024. Event formats
103================
104
105Each trace event has a 'format' file associated with it that contains
106a description of each field in a logged event. This information can
107be used to parse the binary trace stream, and is also the place to
108find the field names that can be used in event filters (see section 5).
109
110It also displays the format string that will be used to print the
111event in text mode, along with the event name and ID used for
112profiling.
113
Jonathan Corbet6234c7b2018-03-07 10:44:08 -0700114Every event has a set of ``common`` fields associated with it; these are
115the fields prefixed with ``common_``. The other fields vary between
Tom Zanussi95b69602009-09-10 23:13:51 -0500116events and correspond to the fields defined in the TRACE_EVENT
117definition for that event.
118
Changbin Du73d98122018-02-17 13:39:42 +0800119Each field in the format has the form::
Tom Zanussi95b69602009-09-10 23:13:51 -0500120
121 field:field-type field-name; offset:N; size:N;
122
123where offset is the offset of the field in the trace record and size
124is the size of the data item, in bytes.
125
126For example, here's the information displayed for the 'sched_wakeup'
Changbin Du73d98122018-02-17 13:39:42 +0800127event::
Tom Zanussi95b69602009-09-10 23:13:51 -0500128
Changbin Du73d98122018-02-17 13:39:42 +0800129 # cat /sys/kernel/debug/tracing/events/sched/sched_wakeup/format
Tom Zanussi95b69602009-09-10 23:13:51 -0500130
Changbin Du73d98122018-02-17 13:39:42 +0800131 name: sched_wakeup
132 ID: 60
133 format:
134 field:unsigned short common_type; offset:0; size:2;
135 field:unsigned char common_flags; offset:2; size:1;
136 field:unsigned char common_preempt_count; offset:3; size:1;
137 field:int common_pid; offset:4; size:4;
138 field:int common_tgid; offset:8; size:4;
Tom Zanussi95b69602009-09-10 23:13:51 -0500139
Changbin Du73d98122018-02-17 13:39:42 +0800140 field:char comm[TASK_COMM_LEN]; offset:12; size:16;
141 field:pid_t pid; offset:28; size:4;
142 field:int prio; offset:32; size:4;
143 field:int success; offset:36; size:4;
144 field:int cpu; offset:40; size:4;
Tom Zanussi95b69602009-09-10 23:13:51 -0500145
Changbin Du73d98122018-02-17 13:39:42 +0800146 print fmt: "task %s:%d [%d] success=%d [%03d]", REC->comm, REC->pid,
147 REC->prio, REC->success, REC->cpu
Tom Zanussi95b69602009-09-10 23:13:51 -0500148
149This event contains 10 fields, the first 5 common and the remaining 5
150event-specific. All the fields for this event are numeric, except for
151'comm' which is a string, a distinction important for event filtering.
152
1535. Event filtering
154==================
155
156Trace events can be filtered in the kernel by associating boolean
157'filter expressions' with them. As soon as an event is logged into
158the trace buffer, its fields are checked against the filter expression
159associated with that event type. An event with field values that
160'match' the filter will appear in the trace output, and an event whose
161values don't match will be discarded. An event with no filter
162associated with it matches everything, and is the default when no
163filter has been set for an event.
164
1655.1 Expression syntax
166---------------------
167
168A filter expression consists of one or more 'predicates' that can be
169combined using the logical operators '&&' and '||'. A predicate is
170simply a clause that compares the value of a field contained within a
171logged event with a constant value and returns either 0 or 1 depending
Changbin Du73d98122018-02-17 13:39:42 +0800172on whether the field value matched (1) or didn't match (0)::
Tom Zanussi95b69602009-09-10 23:13:51 -0500173
174 field-name relational-operator value
175
176Parentheses can be used to provide arbitrary logical groupings and
177double-quotes can be used to prevent the shell from interpreting
178operators as shell metacharacters.
179
180The field-names available for use in filters can be found in the
181'format' files for trace events (see section 4).
182
183The relational-operators depend on the type of the field being tested:
184
185The operators available for numeric fields are:
186
Steven Rostedt1a891cf2013-06-12 13:16:25 -0400187==, !=, <, <=, >, >=, &
Tom Zanussi95b69602009-09-10 23:13:51 -0500188
189And for string fields they are:
190
Steven Rostedt (Red Hat)c3e13c72013-06-17 10:59:17 -0400191==, !=, ~
Tom Zanussi95b69602009-09-10 23:13:51 -0500192
Jonathan Corbet6234c7b2018-03-07 10:44:08 -0700193The glob (~) accepts a wild card character (\*,?) and character classes
Changbin Du73d98122018-02-17 13:39:42 +0800194([). For example::
Steven Rostedt (Red Hat)c3e13c72013-06-17 10:59:17 -0400195
196 prev_comm ~ "*sh"
197 prev_comm ~ "sh*"
198 prev_comm ~ "*sh*"
Masami Hiramatsu60f1d5e2016-10-05 20:58:15 +0900199 prev_comm ~ "ba*sh"
Tom Zanussi95b69602009-09-10 23:13:51 -0500200
Tom Zanussi95b69602009-09-10 23:13:51 -05002015.2 Setting filters
202-------------------
203
204A filter for an individual event is set by writing a filter expression
205to the 'filter' file for the given event.
206
Changbin Du73d98122018-02-17 13:39:42 +0800207For example::
Tom Zanussi95b69602009-09-10 23:13:51 -0500208
Changbin Du73d98122018-02-17 13:39:42 +0800209 # cd /sys/kernel/debug/tracing/events/sched/sched_wakeup
210 # echo "common_preempt_count > 4" > filter
Tom Zanussi95b69602009-09-10 23:13:51 -0500211
Changbin Du73d98122018-02-17 13:39:42 +0800212A slightly more involved example::
Tom Zanussi95b69602009-09-10 23:13:51 -0500213
Changbin Du73d98122018-02-17 13:39:42 +0800214 # cd /sys/kernel/debug/tracing/events/signal/signal_generate
215 # echo "((sig >= 10 && sig < 15) || sig == 17) && comm != bash" > filter
Tom Zanussi95b69602009-09-10 23:13:51 -0500216
217If there is an error in the expression, you'll get an 'Invalid
218argument' error when setting it, and the erroneous string along with
Changbin Du73d98122018-02-17 13:39:42 +0800219an error message can be seen by looking at the filter e.g.::
Tom Zanussi95b69602009-09-10 23:13:51 -0500220
Changbin Du73d98122018-02-17 13:39:42 +0800221 # cd /sys/kernel/debug/tracing/events/signal/signal_generate
222 # echo "((sig >= 10 && sig < 15) || dsig == 17) && comm != bash" > filter
223 -bash: echo: write error: Invalid argument
224 # cat filter
225 ((sig >= 10 && sig < 15) || dsig == 17) && comm != bash
226 ^
227 parse_error: Field not found
Tom Zanussi95b69602009-09-10 23:13:51 -0500228
229Currently the caret ('^') for an error always appears at the beginning of
230the filter string; the error message should still be useful though
231even without more accurate position info.
232
2335.3 Clearing filters
234--------------------
235
236To clear the filter for an event, write a '0' to the event's filter
237file.
238
239To clear the filters for all events in a subsystem, write a '0' to the
240subsystem's filter file.
241
2425.3 Subsystem filters
243---------------------
244
245For convenience, filters for every event in a subsystem can be set or
246cleared as a group by writing a filter expression into the filter file
Thomas Weber88393162010-03-16 11:47:56 +0100247at the root of the subsystem. Note however, that if a filter for any
Tom Zanussi95b69602009-09-10 23:13:51 -0500248event within the subsystem lacks a field specified in the subsystem
249filter, or if the filter can't be applied for any other reason, the
250filter for that event will retain its previous setting. This can
251result in an unintended mixture of filters which could lead to
252confusing (to the user who might think different filters are in
253effect) trace output. Only filters that reference just the common
254fields can be guaranteed to propagate successfully to all events.
255
256Here are a few subsystem filter examples that also illustrate the
257above points:
258
Changbin Du73d98122018-02-17 13:39:42 +0800259Clear the filters on all events in the sched subsystem::
Tom Zanussi95b69602009-09-10 23:13:51 -0500260
Changbin Du73d98122018-02-17 13:39:42 +0800261 # cd /sys/kernel/debug/tracing/events/sched
262 # echo 0 > filter
263 # cat sched_switch/filter
264 none
265 # cat sched_wakeup/filter
266 none
Tom Zanussi95b69602009-09-10 23:13:51 -0500267
268Set a filter using only common fields for all events in the sched
Changbin Du73d98122018-02-17 13:39:42 +0800269subsystem (all events end up with the same filter)::
Tom Zanussi95b69602009-09-10 23:13:51 -0500270
Changbin Du73d98122018-02-17 13:39:42 +0800271 # cd /sys/kernel/debug/tracing/events/sched
272 # echo common_pid == 0 > filter
273 # cat sched_switch/filter
274 common_pid == 0
275 # cat sched_wakeup/filter
276 common_pid == 0
Tom Zanussi95b69602009-09-10 23:13:51 -0500277
278Attempt to set a filter using a non-common field for all events in the
Thomas Weber88393162010-03-16 11:47:56 +0100279sched subsystem (all events but those that have a prev_pid field retain
Changbin Du73d98122018-02-17 13:39:42 +0800280their old filters)::
Tom Zanussi95b69602009-09-10 23:13:51 -0500281
Changbin Du73d98122018-02-17 13:39:42 +0800282 # cd /sys/kernel/debug/tracing/events/sched
283 # echo prev_pid == 0 > filter
284 # cat sched_switch/filter
285 prev_pid == 0
286 # cat sched_wakeup/filter
287 common_pid == 0
Tom Zanussiac38fb82013-10-24 08:59:30 -0500288
Steven Rostedt (Red Hat)627645f2015-11-03 16:37:15 -05002895.4 PID filtering
290-----------------
291
292The set_event_pid file in the same directory as the top events directory
293exists, will filter all events from tracing any task that does not have the
294PID listed in the set_event_pid file.
Changbin Du73d98122018-02-17 13:39:42 +0800295::
Steven Rostedt (Red Hat)627645f2015-11-03 16:37:15 -0500296
Changbin Du73d98122018-02-17 13:39:42 +0800297 # cd /sys/kernel/debug/tracing
298 # echo $$ > set_event_pid
299 # echo 1 > events/enable
Steven Rostedt (Red Hat)627645f2015-11-03 16:37:15 -0500300
301Will only trace events for the current task.
302
303To add more PIDs without losing the PIDs already included, use '>>'.
Changbin Du73d98122018-02-17 13:39:42 +0800304::
Steven Rostedt (Red Hat)627645f2015-11-03 16:37:15 -0500305
Changbin Du73d98122018-02-17 13:39:42 +0800306 # echo 123 244 1 >> set_event_pid
Steven Rostedt (Red Hat)627645f2015-11-03 16:37:15 -0500307
308
Tom Zanussiac38fb82013-10-24 08:59:30 -05003096. Event triggers
310=================
311
312Trace events can be made to conditionally invoke trigger 'commands'
313which can take various forms and are described in detail below;
314examples would be enabling or disabling other trace events or invoking
315a stack trace whenever the trace event is hit. Whenever a trace event
316with attached triggers is invoked, the set of trigger commands
317associated with that event is invoked. Any given trigger can
318additionally have an event filter of the same form as described in
319section 5 (Event filtering) associated with it - the command will only
320be invoked if the event being invoked passes the associated filter.
321If no filter is associated with the trigger, it always passes.
322
323Triggers are added to and removed from a particular event by writing
324trigger expressions to the 'trigger' file for the given event.
325
326A given event can have any number of triggers associated with it,
327subject to any restrictions that individual commands may have in that
328regard.
329
330Event triggers are implemented on top of "soft" mode, which means that
331whenever a trace event has one or more triggers associated with it,
332the event is activated even if it isn't actually enabled, but is
333disabled in a "soft" mode. That is, the tracepoint will be called,
334but just will not be traced, unless of course it's actually enabled.
335This scheme allows triggers to be invoked even for events that aren't
336enabled, and also allows the current event filter implementation to be
337used for conditionally invoking triggers.
338
339The syntax for event triggers is roughly based on the syntax for
340set_ftrace_filter 'ftrace filter commands' (see the 'Filter commands'
Steven Rostedt (VMware)d3439f92018-05-11 15:41:24 -0400341section of Documentation/trace/ftrace.rst), but there are major
Tom Zanussiac38fb82013-10-24 08:59:30 -0500342differences and the implementation isn't currently tied to it in any
343way, so beware about making generalizations between the two.
344
Steven Rostedt (VMware)d3439f92018-05-11 15:41:24 -0400345Note: Writing into trace_marker (See Documentation/trace/ftrace.rst)
346 can also enable triggers that are written into
347 /sys/kernel/tracing/events/ftrace/print/trigger
348
Tom Zanussiac38fb82013-10-24 08:59:30 -05003496.1 Expression syntax
350---------------------
351
Changbin Du73d98122018-02-17 13:39:42 +0800352Triggers are added by echoing the command to the 'trigger' file::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500353
354 # echo 'command[:count] [if filter]' > trigger
355
356Triggers are removed by echoing the same command but starting with '!'
Changbin Du73d98122018-02-17 13:39:42 +0800357to the 'trigger' file::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500358
359 # echo '!command[:count] [if filter]' > trigger
360
361The [if filter] part isn't used in matching commands when removing, so
362leaving that off in a '!' command will accomplish the same thing as
363having it in.
364
365The filter syntax is the same as that described in the 'Event
366filtering' section above.
367
368For ease of use, writing to the trigger file using '>' currently just
369adds or removes a single trigger and there's no explicit '>>' support
370('>' actually behaves like '>>') or truncation support to remove all
371triggers (you have to use '!' for each one added.)
372
3736.2 Supported trigger commands
374------------------------------
375
376The following commands are supported:
377
378- enable_event/disable_event
379
380 These commands can enable or disable another trace event whenever
381 the triggering event is hit. When these commands are registered,
382 the other trace event is activated, but disabled in a "soft" mode.
383 That is, the tracepoint will be called, but just will not be traced.
384 The event tracepoint stays in this mode as long as there's a trigger
385 in effect that can trigger it.
386
387 For example, the following trigger causes kmalloc events to be
388 traced when a read system call is entered, and the :1 at the end
Changbin Du73d98122018-02-17 13:39:42 +0800389 specifies that this enablement happens only once::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500390
Changbin Du73d98122018-02-17 13:39:42 +0800391 # echo 'enable_event:kmem:kmalloc:1' > \
392 /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500393
394 The following trigger causes kmalloc events to stop being traced
395 when a read system call exits. This disablement happens on every
Changbin Du73d98122018-02-17 13:39:42 +0800396 read system call exit::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500397
Changbin Du73d98122018-02-17 13:39:42 +0800398 # echo 'disable_event:kmem:kmalloc' > \
399 /sys/kernel/debug/tracing/events/syscalls/sys_exit_read/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500400
Changbin Du73d98122018-02-17 13:39:42 +0800401 The format is::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500402
403 enable_event:<system>:<event>[:count]
404 disable_event:<system>:<event>[:count]
405
Changbin Du73d98122018-02-17 13:39:42 +0800406 To remove the above commands::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500407
Changbin Du73d98122018-02-17 13:39:42 +0800408 # echo '!enable_event:kmem:kmalloc:1' > \
409 /sys/kernel/debug/tracing/events/syscalls/sys_enter_read/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500410
Changbin Du73d98122018-02-17 13:39:42 +0800411 # echo '!disable_event:kmem:kmalloc' > \
412 /sys/kernel/debug/tracing/events/syscalls/sys_exit_read/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500413
414 Note that there can be any number of enable/disable_event triggers
415 per triggering event, but there can only be one trigger per
416 triggered event. e.g. sys_enter_read can have triggers enabling both
417 kmem:kmalloc and sched:sched_switch, but can't have two kmem:kmalloc
418 versions such as kmem:kmalloc and kmem:kmalloc:1 or 'kmem:kmalloc if
419 bytes_req == 256' and 'kmem:kmalloc if bytes_alloc == 256' (they
420 could be combined into a single filter on kmem:kmalloc though).
421
422- stacktrace
423
424 This command dumps a stacktrace in the trace buffer whenever the
425 triggering event occurs.
426
427 For example, the following trigger dumps a stacktrace every time the
Changbin Du73d98122018-02-17 13:39:42 +0800428 kmalloc tracepoint is hit::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500429
Changbin Du73d98122018-02-17 13:39:42 +0800430 # echo 'stacktrace' > \
431 /sys/kernel/debug/tracing/events/kmem/kmalloc/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500432
433 The following trigger dumps a stacktrace the first 5 times a kmalloc
Changbin Du73d98122018-02-17 13:39:42 +0800434 request happens with a size >= 64K::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500435
Changbin Du73d98122018-02-17 13:39:42 +0800436 # echo 'stacktrace:5 if bytes_req >= 65536' > \
437 /sys/kernel/debug/tracing/events/kmem/kmalloc/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500438
Changbin Du73d98122018-02-17 13:39:42 +0800439 The format is::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500440
441 stacktrace[:count]
442
Changbin Du73d98122018-02-17 13:39:42 +0800443 To remove the above commands::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500444
Changbin Du73d98122018-02-17 13:39:42 +0800445 # echo '!stacktrace' > \
446 /sys/kernel/debug/tracing/events/kmem/kmalloc/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500447
Changbin Du73d98122018-02-17 13:39:42 +0800448 # echo '!stacktrace:5 if bytes_req >= 65536' > \
449 /sys/kernel/debug/tracing/events/kmem/kmalloc/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500450
451 The latter can also be removed more simply by the following (without
Changbin Du73d98122018-02-17 13:39:42 +0800452 the filter)::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500453
Changbin Du73d98122018-02-17 13:39:42 +0800454 # echo '!stacktrace:5' > \
455 /sys/kernel/debug/tracing/events/kmem/kmalloc/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500456
457 Note that there can be only one stacktrace trigger per triggering
458 event.
459
460- snapshot
461
462 This command causes a snapshot to be triggered whenever the
463 triggering event occurs.
464
465 The following command creates a snapshot every time a block request
466 queue is unplugged with a depth > 1. If you were tracing a set of
467 events or functions at the time, the snapshot trace buffer would
Changbin Du73d98122018-02-17 13:39:42 +0800468 capture those events when the trigger event occurred::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500469
Changbin Du73d98122018-02-17 13:39:42 +0800470 # echo 'snapshot if nr_rq > 1' > \
471 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500472
Changbin Du73d98122018-02-17 13:39:42 +0800473 To only snapshot once::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500474
Changbin Du73d98122018-02-17 13:39:42 +0800475 # echo 'snapshot:1 if nr_rq > 1' > \
476 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500477
Changbin Du73d98122018-02-17 13:39:42 +0800478 To remove the above commands::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500479
Changbin Du73d98122018-02-17 13:39:42 +0800480 # echo '!snapshot if nr_rq > 1' > \
481 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500482
Changbin Du73d98122018-02-17 13:39:42 +0800483 # echo '!snapshot:1 if nr_rq > 1' > \
484 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500485
486 Note that there can be only one snapshot trigger per triggering
487 event.
488
489- traceon/traceoff
490
491 These commands turn tracing on and off when the specified events are
492 hit. The parameter determines how many times the tracing system is
493 turned on and off. If unspecified, there is no limit.
494
495 The following command turns tracing off the first time a block
496 request queue is unplugged with a depth > 1. If you were tracing a
497 set of events or functions at the time, you could then examine the
498 trace buffer to see the sequence of events that led up to the
Changbin Du73d98122018-02-17 13:39:42 +0800499 trigger event::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500500
Changbin Du73d98122018-02-17 13:39:42 +0800501 # echo 'traceoff:1 if nr_rq > 1' > \
502 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500503
Changbin Du73d98122018-02-17 13:39:42 +0800504 To always disable tracing when nr_rq > 1::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500505
Changbin Du73d98122018-02-17 13:39:42 +0800506 # echo 'traceoff if nr_rq > 1' > \
507 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500508
Changbin Du73d98122018-02-17 13:39:42 +0800509 To remove the above commands::
Tom Zanussiac38fb82013-10-24 08:59:30 -0500510
Changbin Du73d98122018-02-17 13:39:42 +0800511 # echo '!traceoff:1 if nr_rq > 1' > \
512 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500513
Changbin Du73d98122018-02-17 13:39:42 +0800514 # echo '!traceoff if nr_rq > 1' > \
515 /sys/kernel/debug/tracing/events/block/block_unplug/trigger
Tom Zanussiac38fb82013-10-24 08:59:30 -0500516
517 Note that there can be only one traceon or traceoff trigger per
518 triggering event.
Tom Zanussi0fc38132016-03-03 12:54:56 -0600519
520- hist
521
522 This command aggregates event hits into a hash table keyed on one or
523 more trace event format fields (or stacktrace) and a set of running
524 totals derived from one or more trace event format fields and/or
525 event counts (hitcount).
526
Mauro Carvalho Chehabea272252018-06-26 06:49:11 -0300527 See Documentation/trace/histogram.rst for details and examples.