table of contents
LTTNG-ENABLE-EVENT(1) | LTTng Manual | LTTNG-ENABLE-EVENT(1) |
NAME¶
lttng-enable-event - Create or enable LTTng event rulesSYNOPSIS¶
Create or enable Linux kernel event rules:lttng [GENERAL OPTIONS] enable-event --kernel [--probe=SOURCE | --function=SOURCE | --syscall] [--filter=EXPR] [--session=SESSION] [--channel=CHANNEL] EVENT[,EVENT]...
Create or enable an "all" Linux kernel event rule:
lttng [GENERAL OPTIONS] enable-event --kernel --all [--syscall] [--filter=EXPR] [--session=SESSION] [--channel=CHANNEL]
Create or enable application event rules:
lttng [GENERAL OPTIONS] enable-event (--userspace | --jul | --log4j | --python) [--filter=EXPR] [--exclude=EVENT[,EVENT]...] [--loglevel=LOGLEVEL | --loglevel-only=LOGLEVEL] [--session=SESSION] [--channel=CHANNEL] (--all | EVENT[,EVENT]...)
DESCRIPTION¶
The lttng enable-event command can create a new event rule, or enable one or more existing and disabled ones.An event rule created by lttng enable-event is a set of conditions that must be satisfied in order for an actual event to be emitted by an LTTng tracer when the execution of an application or the Linux kernel reaches an event source (tracepoint, system call, dynamic probe). Event sources can be listed with the lttng-list(1) command.
The lttng-disable-event(1) command can be used to disable existing event rules.
Event rules are always assigned to a channel when they are created. If the --channel option is omitted, a default channel named channel0 is used (and created automatically if it does not exist for the specified domain in the selected tracing session).
If the --session option is omitted, the chosen channel is picked from the current tracing session.
Events can be enabled while tracing is active (use lttng-start(1) to make a tracing session active).
Event source types¶
Four types of event sources are available in the Linux kernel tracing domain (--kernel option):Tracepoint (--tracepoint option; default)
Dynamic probe (--probe option)
Function probe (--function option)
System call (--syscall option)
The application tracing domains (--userspace, --jul, --log4j, or --python options) only support tracepoints. In the cases of the JUL, Apache log4j, and Python domains, the event names correspond to logger names.
Understanding event rule conditions¶
When creating an event rule with lttng enable-event, conditions are specified using options. The logical conjunction (logical AND) of all those conditions must be true when an event source is reached by an application or by the Linux kernel in order for an actual event to be emitted by an LTTng tracer.Any condition that is not explicitly specified on creation is considered a don’t care.
For example, consider the following commands:
$ lttng enable-event --userspace hello:world $ lttng enable-event --userspace hello:world --loglevel=TRACE_INFO
Here, two event rules are created. The first one has a single condition: the tracepoint name must match hello:world. The second one has two conditions:
In this case, the second event rule is pointless because the first one is more general: it does not care about the tracepoint’s log level. If an event source matching both event rules is reached by the application’s execution, only one event is emitted.
The available conditions for the Linux kernel domain are:
You can use * characters at any place in the tracepoint or system call name as wildcards to match zero or more characters. To use a literal * character, use \*.
The available conditions for the application domains are:
You can use * characters at any place in the tracepoint name as wildcards to match zero or more characters. To use a literal * character, use \*. When you create an event rule with a tracepoint name containing a wildcard, you can exclude specific tracepoint names from the match with the --exclude option.
When using lttng enable-event with a set of conditions that does not currently exist for the chosen tracing session, domain, and channel, a new event rule is created. Otherwise, the existing event rule is enabled if it is currently disabled (see lttng-disable-event(1)).
The --all option can be used alongside the --tracepoint or --syscall options. When this option is used, no EVENT argument must be specified. This option defines a single event rule matching all the possible events of a given tracing domain for the chosen channel and tracing session. It is the equivalent of an EVENT argument named * (wildcard).
Filter expression syntax¶
A filter expression can be specified with the --filter option when creating a new event rule. If the filter expression evaluates to true when executed against the dynamic values of an event’s fields when tracing, the filtering condition passes.Note
Make sure to single-quote the filter expression when running the command from a shell, as filter expressions typically include characters having a special meaning for most shells.
The filter expression syntax is very similar to C language conditional expressions (expressions that can be evaluated by an if statement).
The following logical operators are supported:
Name | Syntax |
Logical negation (NOT) | !a |
Logical conjunction (AND) | a && b |
Logical disjunction (OR) | a || b |
The following comparison operators/relational operators are supported:
Name | Syntax |
Equal to | a == b |
Not equal to | a != b |
Greater than | a > b |
Less than | a < b |
Greater than or equal to | a >= b |
Less than or equal to | a <= b |
The arithmetic and bitwise operators are NOT supported.
The precedence table of the operators above is the same as the one of the C language. Parentheses are supported to bypass this.
The dynamic value of an event field is read by using its name as a C identifier.
The dynamic value of a statically-known context field is read by prefixing its name with $ctx.. Statically-known context fields are context fields added to channels without the $app. prefix using the lttng-add-context(1) command. $ctx.cpu_id is also available as the ID of the CPU which emits the event.
The dynamic value of an application-specific context field is read by prefixing its name with $app. (follows the format used to add such a context field with the lttng-add-context(1) command).
When a comparison includes a non existent event field, the whole filter expression evaluates to false (the event is discarded).
C integer and floating point number constants are supported, as well as literal strings between double quotes ("). You can use * characters at any place in a literal string as wildcards to match zero or more characters. To use a literal * character, use \*.
LTTng-UST enumeration fields can be compared to integer values (fields or constants).
Note
Although it is possible to filter the process ID of an event when the pid context has been added to its channel using, for example, $ctx.pid == 2832, it is recommended to use the PID tracker instead, which is much more efficient (see lttng-track(1)).
Examples:
msg_id == 23 && size >= 2048
$ctx.procname == "lttng*" && (!flag || poel < 34)
$app.my_provider:my_context == 17.34e9 || some_enum >= 14
$ctx.cpu_id == 2 && filename != "*.log"
Log levels¶
Tracepoints and log statements in applications have an attached log level. Application event rules can contain a log level condition.With the --loglevel option, the event source’s log level must be at least as severe as the option’s argument. With the --loglevel-only option, the event source’s log level must match the option’s argument.
The available log levels are:
User space domain (--userspace option)
java.util.logging domain (--jul option)
Apache log4j domain (--log4j option)
Python domain (--python option)
OPTIONS¶
General options are described in lttng(1).Domain¶
One of:-j, --jul
-k, --kernel
-l, --log4j
-p, --python
-u, --userspace
Target¶
-c CHANNEL, --channel=CHANNEL-s SESSION, --session=SESSION
Event source type¶
One of:--function=SOURCE
--probe=SOURCE
--syscall
--tracepoint
Log level¶
One of:--loglevel=LOGLEVEL
--loglevel-only=LOGLEVEL
Filtering and exclusion¶
-x EVENT[,EVENT]..., --exclude=EVENT[,EVENT]...-f EXPR, --filter=EXPR
Shortcuts¶
-a, --allProgram information¶
-h, --helpThis option, like lttng-help(1), attempts to launch /usr/bin/man to view the command’s man page. The path to the man pager can be overridden by the LTTNG_MAN_BIN_PATH environment variable.
--list-options
ENVIRONMENT VARIABLES¶
LTTNG_ABORT_ON_ERRORLTTNG_HOME
LTTNG_MAN_BIN_PATH
LTTNG_SESSION_CONFIG_XSD_PATH
LTTNG_SESSIOND_PATH
The --sessiond-path option has precedence over this environment variable.
Note that the lttng-create(1) command can spawn an LTTng session daemon automatically if none is running. See lttng-sessiond(8) for the environment variables influencing the execution of the session daemon.
FILES¶
$LTTNG_HOME/.lttngrcThis is where the per-user current tracing session is stored between executions of lttng(1). The current tracing session can be set with lttng-set-session(1). See lttng-create(1) for more information about tracing sessions.
$LTTNG_HOME/lttng-traces
$LTTNG_HOME/.lttng
$LTTNG_HOME/.lttng/sessions
/usr/local/etc/lttng/sessions
Note
$LTTNG_HOME defaults to $HOME when not explicitly set.
EXIT STATUS¶
01
2
3
4
BUGS¶
If you encounter any issue or usability problem, please report it on the LTTng bug tracker <https://bugs.lttng.org/projects/lttng-tools>.RESOURCES¶
COPYRIGHTS¶
This program is part of the LTTng-tools project.LTTng-tools is distributed under the GNU General Public License version 2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html>. See the LICENSE <https://github.com/lttng/lttng-tools/blob/master/LICENSE> file for details.
THANKS¶
Special thanks to Michel Dagenais and the DORSAL laboratory <http://www.dorsal.polymtl.ca/> at École Polytechnique de Montréal for the LTTng journey.Also thanks to the Ericsson teams working on tracing which helped us greatly with detailed bug reports and unusual test cases.
AUTHORS¶
LTTng-tools was originally written by Mathieu Desnoyers, Julien Desfossez, and David Goulet. More people have since contributed to it.LTTng-tools is currently maintained by Jérémie Galarneau <mailto:jeremie.galarneau@efficios.com>.
SEE ALSO¶
lttng-disable-event(1), lttng(1)01/22/2019 | LTTng 2.10.6 |