doc/man: use specific revision date for each manual page
[lttng-tools.git] / doc / man / lttng-enable-event.1.txt
CommitLineData
e9b06e2b
PP
1lttng-enable-event(1)
2=====================
990cbf52 3:revdate: 4 April 2019
e9b06e2b
PP
4
5
6NAME
7----
8lttng-enable-event - Create or enable LTTng event rules
9
10
11SYNOPSIS
12--------
13Create or enable Linux kernel event rules:
14
15[verse]
ce19b9ed 16*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-event* option:--kernel
e9b06e2b
PP
17 [option:--probe='SOURCE' | option:--function='SOURCE' | option:--syscall]
18 [option:--filter='EXPR'] [option:--session='SESSION']
19 [option:--channel='CHANNEL'] 'EVENT'[,'EVENT']...
20
21Create or enable an "all" Linux kernel event rule:
22
23[verse]
ce19b9ed 24*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-event* option:--kernel option:--all [option:--syscall]
e9b06e2b
PP
25 [option:--filter='EXPR'] [option:--session='SESSION'] [option:--channel='CHANNEL']
26
27Create or enable application event rules:
28
29[verse]
ce19b9ed 30*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-event*
e9b06e2b
PP
31 (option:--userspace | option:--jul | option:--log4j | option:--python)
32 [option:--filter='EXPR'] [option:--exclude='EVENT'[,'EVENT']...]
33 [option:--loglevel='LOGLEVEL' | option:--loglevel-only='LOGLEVEL']
34 [option:--session='SESSION'] [option:--channel='CHANNEL'] (option:--all | 'EVENT'[,'EVENT']...)
35
36
37DESCRIPTION
38-----------
39The `lttng enable-event` command can create a new event rule, or enable
40one or more existing and disabled ones.
41
42An event rule created by `lttng enable-event` is a set of conditions
43that must be satisfied in order for an actual event to be emitted by
44an LTTng tracer when the execution of an application or the Linux kernel
45reaches an event source (tracepoint, system call, dynamic probe).
7c1a4458 46Event sources can be listed with the man:lttng-list(1) command.
e9b06e2b 47
7c1a4458 48The man:lttng-disable-event(1) command can be used to disable
e9b06e2b
PP
49existing event rules.
50
51Event rules are always assigned to a channel when they are created. If
52the option:--channel option is omitted, a default channel named
53`channel0` is used (and created automatically if it does not exist for
54the specified domain in the selected tracing session).
55
56If the option:--session option is omitted, the chosen channel is picked
57from the current tracing session.
58
59Events can be enabled while tracing is active
7c1a4458 60(use man:lttng-start(1) to make a tracing session active).
e9b06e2b
PP
61
62
63Event source types
64~~~~~~~~~~~~~~~~~~
65Four types of event sources are available in the Linux kernel tracing
66domain (option:--kernel option):
67
68Tracepoint (option:--tracepoint option; default)::
69 A Linux kernel tracepoint, that is, a static instrumentation point
70 placed in the kernel source code. Standard tracepoints are designed
71 and placed in the source code by developers and record useful
72 payload fields.
73
74Dynamic probe (option:--probe option)::
75 A Linux kernel kprobe, that is, an instrumentation point placed
76 dynamically in the compiled kernel code. Dynamic probe events do not
77 record any payload field.
78
79Function probe (option:--function option)::
80 A Linux kernel kretprobe, that is, two instrumentation points placed
81 dynamically where a function is entered and where it returns in the
82 compiled kernel code. Function probe events do not record any
83 payload field.
84
85System call (option:--syscall option)::
86 A Linux kernel system call. Two instrumentation points are
87 statically placed where a system call function is entered and where
88 it returns in the compiled kernel code. System call event sources
89 record useful payload fields.
90
91The application tracing domains (option:--userspace, option:--jul,
92option:--log4j, or option:--python options) only support tracepoints.
93In the cases of the JUL, Apache log4j, and Python domains, the event
94names correspond to _logger_ names.
95
96
97Understanding event rule conditions
98~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99When creating an event rule with `lttng enable-event`, conditions are
100specified using options. The logical conjunction (logical AND) of all
101those conditions must be true when an event source is reached by an
102application or by the Linux kernel in order for an actual event
103to be emitted by an LTTng tracer.
104
105Any condition that is not explicitly specified on creation is considered
106a _don't care_.
107
108For example, consider the following commands:
109
d4f093aa 110[role="term"]
03c5529d
PP
111----
112$ lttng enable-event --userspace hello:world
113$ lttng enable-event --userspace hello:world --loglevel=TRACE_INFO
114----
e9b06e2b
PP
115
116Here, two event rules are created. The first one has a single condition:
117the tracepoint name must match `hello:world`. The second one has two
118conditions:
119
120* The tracepoint name must match `hello:world`, _and_
121* The tracepoint's defined log level must be at least as severe as
122 the `TRACE_INFO` level.
123
124In this case, the second event rule is pointless because the first one
125is more general: it does not care about the tracepoint's log level.
126If an event source matching both event rules is reached by the
127application's execution, only one event is emitted.
128
129The available conditions for the Linux kernel domain are:
130
131* Tracepoint/system call name ('EVENT' argument with
132 option:--tracepoint or option:--syscall options) or
133 dynamic probe/function name/address
134 (option:--probe or option:--function option's argument) which must
135 match event source's equivalent.
136+
f69e7997
PP
137You can use `*` characters at any place in the tracepoint or system
138call name as wildcards to match zero or more characters. To use a
139literal `*` character, use :escwc:.
e9b06e2b
PP
140
141* Filter expression (option:--filter option) executed against the
142 dynamic values of event fields at execution time that must evaluate
143 to true. See the <<filter-syntax,Filter expression syntax>> section
144 below for more information.
145
146The available conditions for the application domains are:
147
148* Tracepoint name ('EVENT' with option:--tracepoint option) which must
149 match event source's equivalent.
150+
f69e7997
PP
151You can use `*` characters at any place in the tracepoint name as
152wildcards to match zero or more characters. To use a literal `*`
153character, use :escwc:. When you create an event rule with a tracepoint
154name containing a wildcard, you can exclude specific tracepoint names
155from the match with the option:--exclude option.
e9b06e2b
PP
156
157* Filter expression (option:--filter option) executed against the
158 dynamic values of event fields at execution time that must evaluate
159 to true. See the <<filter-syntax,Filter expression syntax>> section
160 below for more information.
161* Event's log level that must be at least as severe as a given
162 log level (option:--loglevel option) or match exactly a given log
163 level (option:--loglevel-only option).
164
165When using `lttng enable-event` with a set of conditions that does not
166currently exist for the chosen tracing session, domain, and channel,
167a new event rule is created. Otherwise, the existing event rule is
168enabled if it is currently disabled
7c1a4458 169(see man:lttng-disable-event(1)).
e9b06e2b
PP
170
171The option:--all option can be used alongside the option:--tracepoint
172or option:--syscall options. When this option is used, no 'EVENT'
173argument must be specified. This option defines a single event rule
174matching _all_ the possible events of a given tracing domain for the
175chosen channel and tracing session. It is the equivalent of an 'EVENT'
176argument named `*` (wildcard).
177
178
179[[filter-syntax]]
180Filter expression syntax
181~~~~~~~~~~~~~~~~~~~~~~~~
5be0a715
PP
182A filter expression can be specified with the option:--filter option
183when creating a new event rule. If the filter expression evaluates to
184true when executed against the dynamic values of an event's fields when
185tracing, the filtering condition passes.
e9b06e2b 186
60f7980c
PP
187NOTE: Make sure to **single-quote** the filter expression when running
188the command from a shell, as filter expressions typically include
189characters having a special meaning for most shells.
190
e9b06e2b
PP
191The filter expression syntax is very similar to C language conditional
192expressions (expressions that can be evaluated by an `if` statement).
193
194The following logical operators are supported:
195
196[width="40%",options="header"]
197|=====================================
198| Name | Syntax
199| Logical negation (NOT) | `!a`
200| Logical conjunction (AND) | `a && b`
201| Logical disjunction (OR) | `a \|\| b`
202|=====================================
203
204The following comparison operators/relational operators are supported:
205
206[width="40%",options="header"]
207|====================================
208| Name | Syntax
209| Equal to | `a == b`
210| Not equal to | `a != b`
211| Greater than | `a > b`
212| Less than | `a < b`
213| Greater than or equal to | `a >= b`
214| Less than or equal to | `a <= b`
215|====================================
216
217The arithmetic and bitwise operators are :not: supported.
218
219The precedence table of the operators above is the same as the one of
220the C language. Parentheses are supported to bypass this.
221
5be0a715
PP
222The dynamic value of an event field is read by using its name as a C
223identifier.
e9b06e2b
PP
224
225The dynamic value of a statically-known context field is read by
226prefixing its name with `$ctx.`. Statically-known context fields are
227context fields added to channels without the `$app.` prefix using the
5be0a715
PP
228man:lttng-add-context(1) command. `$ctx.cpu_id` is also available as the
229ID of the CPU which emits the event.
e9b06e2b
PP
230
231The dynamic value of an application-specific context field is read by
232prefixing its name with `$app.` (follows the format used to add such a
7c1a4458 233context field with the man:lttng-add-context(1) command).
e9b06e2b
PP
234
235When a comparison includes a non existent event field, the whole filter
236expression evaluates to false (the event is discarded).
237
238C integer and floating point number constants are supported, as well as
f69e7997
PP
239literal strings between double quotes (`"`). You can use `*` characters
240at any place in a literal string as wildcards to match zero or more
241characters. To use a literal `*` character, use :escwc:.
e9b06e2b
PP
242
243LTTng-UST enumeration fields can be compared to integer values (fields
244or constants).
245
246NOTE: Although it is possible to filter the process ID of an event when
247the `pid` context has been added to its channel using, for example,
248`$ctx.pid == 2832`, it is recommended to use the PID tracker instead,
7c1a4458 249which is much more efficient (see man:lttng-track(1)).
e9b06e2b
PP
250
251Examples:
252
253----------------------------
254msg_id == 23 && size >= 2048
255----------------------------
256
257-------------------------------------------------
258$ctx.procname == "lttng*" && (!flag || poel < 34)
259-------------------------------------------------
260
261---------------------------------------------------------
262$app.my_provider:my_context == 17.34e9 || some_enum >= 14
263---------------------------------------------------------
264
5be0a715
PP
265---------------------------------------
266$ctx.cpu_id == 2 && filename != "*.log"
267---------------------------------------
f69e7997 268
e9b06e2b
PP
269
270[[log-levels]]
271Log levels
272~~~~~~~~~~
273Tracepoints and log statements in applications have an attached log
274level. Application event rules can contain a _log level_ condition.
275
276With the option:--loglevel option, the event source's log level must
277be at least as severe as the option's argument. With the
278option:--loglevel-only option, the event source's log level must match
279the option's argument.
280
281The available log levels are:
282
283User space domain (option:--userspace option)::
284 Shortcuts such as `system` are allowed.
285+
286* `TRACE_EMERG` (0)
287* `TRACE_ALERT` (1)
288* `TRACE_CRIT` (2)
289* `TRACE_ERR` (3)
290* `TRACE_WARNING` (4)
291* `TRACE_NOTICE` (5)
292* `TRACE_INFO` (6)
293* `TRACE_DEBUG_SYSTEM` (7)
294* `TRACE_DEBUG_PROGRAM` (8)
295* `TRACE_DEBUG_PROCESS` (9)
296* `TRACE_DEBUG_MODULE` (10)
297* `TRACE_DEBUG_UNIT` (11)
298* `TRACE_DEBUG_FUNCTION` (12)
299* `TRACE_DEBUG_LINE` (13)
300* `TRACE_DEBUG` (14)
301
302`java.util.logging` domain (option:--jul option)::
303 Shortcuts such as `severe` are allowed.
304+
305* `JUL_OFF` (`INT32_MAX`)
306* `JUL_SEVERE` (1000)
307* `JUL_WARNING` (900)
308* `JUL_INFO` (800)
309* `JUL_CONFIG` (700)
310* `JUL_FINE` (500)
311* `JUL_FINER` (400)
312* `JUL_FINEST` (300)
313* `JUL_ALL` (`INT32_MIN`)
314
315Apache log4j domain (option:--log4j option)::
316 Shortcuts such as `severe` are allowed.
317+
318* `LOG4J_OFF` (`INT32_MAX`)
319* `LOG4J_FATAL` (50000)
320* `LOG4J_ERROR` (40000)
321* `LOG4J_WARN` (30000)
322* `LOG4J_INFO` (20000)
323* `LOG4J_DEBUG` (10000)
324* `LOG4J_TRACE` (5000)
325* `LOG4J_ALL` (`INT32_MIN`)
326
327Python domain (option:--python option)::
328 Shortcuts such as `critical` are allowed.
329+
330* `PYTHON_CRITICAL` (50)
331* `PYTHON_ERROR` (40)
332* `PYTHON_WARNING` (30)
333* `PYTHON_INFO` (20)
334* `PYTHON_DEBUG` (10)
335* `PYTHON_NOTSET` (0)
336
337
338include::common-cmd-options-head.txt[]
339
340
341Domain
342~~~~~~
343One of:
344
345option:-j, option:--jul::
346 Create or enable event rules in the `java.util.logging`
347 (JUL) domain.
348
349option:-k, option:--kernel::
350 Create or enable event rules in the Linux kernel domain.
351
352option:-l, option:--log4j::
353 Create or enable event rules in the Apache log4j domain.
354
355option:-p, option:--python::
356 Create or enable event rules in the Python domain.
357
358option:-u, option:--userspace::
359 Create or enable event rules in the user space domain.
360
361
362Target
363~~~~~~
59b19c3c 364option:-c 'CHANNEL', option:--channel='CHANNEL'::
e9b06e2b
PP
365 Create or enable event rules in the channel named 'CHANNEL' instead
366 of the default channel name `channel0`.
367
59b19c3c 368option:-s 'SESSION', option:--session='SESSION'::
e9b06e2b
PP
369 Create or enable event rules in the tracing session named 'SESSION'
370 instead of the current tracing session.
371
372
373Event source type
374~~~~~~~~~~~~~~~~~
375One of:
376
377option:--function='SOURCE'::
378 Linux kernel kretprobe. Only available with the option:--kernel
379 domain option. 'SOURCE' is one of:
380+
381* Function address (`0x` prefix supported)
382* Function symbol
383* Function symbol and offset (`SYMBOL+OFFSET` format)
384
385option:--probe='SOURCE'::
386 Linux kernel kprobe. Only available with the option:--kernel
387 domain option. 'SOURCE' is one of:
388+
389* Address (`0x` prefix supported)
390* Symbol
391* Symbol and offset (`SYMBOL+OFFSET` format)
392
393option:--syscall::
394 Linux kernel system call. Only available with the option:--kernel
395 domain option.
396
397option:--tracepoint::
398 Linux kernel or application tracepoint (default).
399
400
401Log level
402~~~~~~~~~
403One of:
404
405option:--loglevel='LOGLEVEL'::
406 Add log level condition to the event rule: the event source's
407 defined log level must be at least as severe as 'LOGLEVEL'.
408 See the <<log-levels,Log levels>> section above for the available
409 log levels. Only available with application domains.
410
411option:--loglevel-only='LOGLEVEL'::
412 Add log level condition to the event rule: the event source's
413 defined log level must match 'LOGLEVEL'. See the
414 <<log-levels,Log levels>> section above for the available log
415 levels. Only available with application domains.
416
417
418Filtering and exclusion
419~~~~~~~~~~~~~~~~~~~~~~~
59b19c3c 420option:-x 'EVENT'[,'EVENT']..., option:--exclude='EVENT'[,'EVENT']...::
e9b06e2b 421 Exclude events named 'EVENT' from the event rule. This option
f69e7997
PP
422 can be used when the command's 'EVENT' argument contains at least
423 one wildcard star (`*`) to exclude specific names. 'EVENT' can also
424 contain wildcard stars. To use a
425 literal `,` character, use :esccomma:.
426 Only available with the option:--userspace domain.
e9b06e2b 427
59b19c3c 428option:-f 'EXPR', option:--filter='EXPR'::
e9b06e2b
PP
429 Add filter expression condition to the event rule. Expression 'EXPR'
430 must evaluate to true when executed against the dynamic values of
431 event fields. See the <<filter-syntax,Filter expression syntax>>
432 section above for more information.
433
434
435Shortcuts
436~~~~~~~~~
437option:-a, option:--all::
438 Equivalent to an 'EVENT' argument named `*` (wildcard) when also
439 using the option:--tracepoint (default) or option:--syscall option.
440
441
442include::common-cmd-help-options.txt[]
443
444
445include::common-cmd-footer.txt[]
446
447
448SEE ALSO
449--------
7c1a4458
PP
450man:lttng-disable-event(1),
451man:lttng(1)
This page took 0.053526 seconds and 4 git commands to generate.