Use compiler-agnostic defines to silence warning
[lttng-tools.git] / doc / man / lttng-concepts.7.txt
... / ...
CommitLineData
1lttng-concepts(7)
2=================
3:revdate: 14 June 2021
4:sect-event-rule: INSTRUMENTATION POINT, EVENT RULE, AND EVENT
5:sect-session: RECORDING SESSION
6:sect-domain: TRACING DOMAIN
7:sect-channel: CHANNEL AND RING BUFFER
8:sect-recording-event-rule: RECORDING EVENT RULE AND EVENT RECORD
9
10
11NAME
12----
13lttng-concepts - LTTng concepts
14
15
16DESCRIPTION
17-----------
18This manual page documents the concepts of LTTng.
19
20Many other LTTng manual pages refer to this one so that you can
21understand what are the various LTTng objects and how they relate to
22each other.
23
24The concepts of LTTng{nbsp}{lttng_version} are:
25
26* Instrumentation point, event rule, and event
27* Trigger
28* Recording session
29* Tracing domain
30* Channel and ring buffer
31* Recording event rule and event record
32
33
34[[event-rule]]
35{sect-event-rule}
36-----------------
37An _instrumentation point_ is a point, within a piece of software,
38which, when executed, creates an LTTng _event_.
39
40LTTng offers various types of instrumentation; see the
41``<<inst-point-types,Instrumentation point types>>'' section below to
42learn about them.
43
44An _event rule_ is a set of conditions to match a set of events.
45
46When LTTng creates an event{nbsp}__E__, an event rule{nbsp}__ER__ is
47said to __match__{nbsp}__E__ when{nbsp}__E__ satisfies *all* the
48conditions of{nbsp}__ER__. This concept is similar to a regular
49expression which matches a set of strings.
50
51When an event rule matches an event, LTTng _emits_ the event, therefore
52attempting to execute one or more actions.
53
54[IMPORTANT]
55====
56The event creation and emission processes are documentation concepts to
57help understand the journey from an instrumentation point to the
58execution of actions.
59
60The actual creation of an event can be costly because LTTng needs to
61evaluate the arguments of the instrumentation point.
62
63In practice, LTTng implements various optimizations for the Linux kernel
64and user space tracing domains (see the ``<<domain,{sect-domain}>>''
65section below) to avoid actually creating an event when the tracer
66knows, thanks to properties which are independent from the event payload
67and current context, that it would never emit such an event. Those
68properties are:
69
70* The instrumentation point type (see the
71 ``<<inst-point-types,Instrumentation point types>>'' section below).
72
73* The instrumentation point name.
74
75* The instrumentation point log level.
76
77* For a recording event rule (see the
78 ``<<recording-event-rule,{sect-recording-event-rule}>>'' section
79 below):
80** The status of the rule itself.
81** The status of the channel (see the ``<<channel,{sect-channel}>>''
82 section below).
83** The activity of the recording session (started or stopped; see
84 the ``<<session,{sect-session}>>'' section below).
85** Whether or not the process for which LTTng would create the event is
86 allowed to record events (see man:lttng-track(1)).
87
88In other words: if, for a given instrumentation point{nbsp}__IP__, the
89LTTng tracer knows that it would never emit an event,
90executing{nbsp}__IP__ represents a simple boolean variable check and,
91for a Linux kernel recording event rule, a few process attribute checks.
92====
93
94As of LTTng{nbsp}{lttng_version}, there are two places where you can
95find an event rule:
96
97Recording event rule::
98 A specific type of event rule of which the action is to record the
99 matched event as an event record.
100+
101See the ``<<recording-event-rule,{sect-recording-event-rule}>>'' section
102below.
103+
104Create or enable a recording event rule with the
105man:lttng-enable-event(1) command.
106+
107List the recording event rules of a specific recording session
108and/or channel with the man:lttng-list(1) and man:lttng-status(1)
109commands.
110
111``Event rule matches'' <<trigger,trigger>> condition (since LTTng{nbsp}2.13)::
112 When the event rule of the trigger condition matches an event, LTTng
113 can execute user-defined actions such as sending an LTTng
114 notification, starting a recording session, and more.
115+
116See man:lttng-add-trigger(1) and man:lttng-event-rule(7).
117
118For LTTng to emit an event{nbsp}__E__,{nbsp}__E__ must satisfy *all* the
119basic conditions of an event rule{nbsp}__ER__, that is:
120
121* The instrumentation point from which LTTng creates{nbsp}__E__ has a
122 specific type.
123+
124See the ``<<inst-point-types,Instrumentation point types>>'' section
125below.
126
127* A pattern matches the name of{nbsp}__E__ while another pattern
128 doesn't.
129
130* The log level of the instrumentation point from which LTTng
131 creates{nbsp}__E__ is at least as severe as some value, or is exactly
132 some value.
133
134* The fields of the payload of{nbsp}__E__ and the current context fields
135 satisfy a filter expression.
136
137A recording event rule has additional, implicit conditions to satisfy.
138See the ``<<recording-event-rule,{sect-recording-event-rule}>>'' section
139below to learn more.
140
141
142[[inst-point-types]]
143Instrumentation point types
144~~~~~~~~~~~~~~~~~~~~~~~~~~~
145As of LTTng{nbsp}{lttng_version}, the available instrumentation point
146types are, depending on the tracing domain (see the
147``<<domain,{sect-domain}>>'' section below):
148
149Linux kernel::
150 LTTng tracepoint:::
151 A statically defined point in the source code of the kernel
152 image or of a kernel module using the LTTng-modules macros.
153+
154List the available Linux kernel tracepoints with `lttng list --kernel`.
155See man:lttng-list(1) to learn more.
156
157 Linux kernel system call:::
158 Entry, exit, or both of a Linux kernel system call.
159+
160List the available Linux kernel system call instrumentation points with
161`lttng list --kernel --syscall`. See man:lttng-list(1) to learn more.
162
163 Linux kprobe:::
164 A single probe dynamically placed in the compiled kernel code.
165+
166When you create such an instrumentation point, you set its memory
167address or symbol name.
168
169 Linux user space probe:::
170 A single probe dynamically placed at the entry of a compiled
171 user space application/library function through the kernel.
172+
173When you create such an instrumentation point, you set:
174+
175--
176With the ELF method::
177 Its application/library path and its symbol name.
178
179With the USDT method::
180 Its application/library path, its provider name, and its probe name.
181+
182``USDT'' stands for SystemTap User-level Statically Defined Tracing,
183a DTrace-style marker.
184--
185+
186As of LTTng{nbsp}{lttng_version}, LTTng only supports USDT probes which
187are :not: reference-counted.
188
189 Linux kretprobe:::
190 Entry, exit, or both of a Linux kernel function.
191+
192When you create such an instrumentation point, you set the memory
193address or symbol name of its function.
194
195User space::
196 LTTng tracepoint:::
197 A statically defined point in the source code of a C/$$C++$$
198 application/library using the LTTng-UST macros.
199+
200List the available Linux kernel tracepoints with
201`lttng list --userspace`. See man:lttng-list(1) to learn more.
202
203`java.util.logging`, Apache Log4j 1.x, Apache Log4j 2, and Python::
204 Java or Python logging statement:::
205 A method call on a Java or Python logger attached to an
206 LTTng-UST handler.
207+
208List the available Java and Python loggers with `lttng list --jul`,
209`lttng list --log4j`, `lttng list --log4j2`, and `lttng list --python`. See
210man:lttng-list(1) to learn more.
211
212
213[[trigger]]
214TRIGGER
215-------
216A _trigger_ associates a condition to one or more actions.
217
218When the condition of a trigger is satisfied, LTTng attempts to execute
219its actions.
220
221As of LTTng{nbsp}{lttng_version}, the available trigger conditions and
222actions are:
223
224Conditions::
225+
226* The consumed buffer size of a given recording
227 session (see the ``<<session,{sect-session}>>'' section below)
228 becomes greater than some value.
229
230* The buffer usage of a given channel (see the
231 ``<<channel,{sect-channel}>>'' section below) becomes greater than
232 some value.
233
234* The buffer usage of a given channel becomes less than some value.
235
236* There's an ongoing recording session rotation (see the
237 ``<<rotation,Recording session rotation>>'' section below).
238
239* A recording session rotation becomes completed.
240
241* An event rule matches an event.
242+
243As of LTTng{nbsp}{lttng_version}, this is the only available condition
244when you add a trigger with the man:lttng-add-trigger(1) command. The
245other ones are available through the liblttng-ctl C{nbsp}API.
246
247Actions::
248+
249* Send a notification to a user application.
250* Start a given recording session, like man:lttng-start(1) would do.
251* Stop a given recording session, like man:lttng-stop(1) would do.
252* Archive the current trace chunk of a given recording session (rotate),
253 like man:lttng-rotate(1) would do.
254* Take a snapshot of a given recording session, like
255 man:lttng-snapshot(1) would do.
256
257A trigger belongs to a session daemon (see man:lttng-sessiond(8)), not
258to a specific recording session. For a given session daemon, each Unix
259user has its own, private triggers. Note, however, that the `root` Unix
260user may, for the root session daemon:
261
262* Add a trigger as another Unix user.
263
264* List all the triggers, regardless of their owner.
265
266* Remove a trigger which belongs to another Unix user.
267
268For a given session daemon and Unix user, a trigger has a unique name.
269
270Add a trigger to a session daemon with the man:lttng-add-trigger(1)
271command.
272
273List the triggers of your Unix user (or of all users if your
274Unix user is `root`) with the man:lttng-list-triggers(1) command.
275
276Remove a trigger with the man:lttng-remove-trigger(1) command.
277
278
279[[session]]
280{sect-session}
281--------------
282A _recording session_ (named ``tracing session'' prior to
283LTTng{nbsp}2.13) is a stateful dialogue between you and a session daemon
284(see man:lttng-sessiond(8)) for everything related to event recording.
285
286Everything that you do when you control LTTng tracers to record events
287happens within a recording session. In particular, a recording session:
288
289* Has its own name, unique for a given session daemon.
290
291* Has its own set of trace files, if any.
292
293* Has its own state of activity (started or stopped).
294+
295An active recording session is an implicit recording event rule
296condition (see the
297``<<recording-event-rule,{sect-recording-event-rule}>>'' section below).
298
299* Has its own mode (local, network streaming, snapshot, or live).
300+
301See the ``<<session-modes,Recording session modes>>'' section below to
302learn more.
303
304* Has its own channels (see the ``<<channel,{sect-channel}>>'' section
305 below) to which are attached their own recording event rules.
306
307* Has its own process attribute inclusion sets (see man:lttng-track(1)).
308
309Those attributes and objects are completely isolated between different
310recording sessions.
311
312A recording session is like an ATM session: the operations you do on the
313banking system through the ATM don't alter the data of other users of
314the same system. In the case of the ATM, a session lasts as long as your
315bank card is inside. In the case of LTTng, a recording session lasts from
316the man:lttng-create(1) command to the man:lttng-destroy(1) command.
317
318A recording session belongs to a session daemon (see
319man:lttng-sessiond(8)). For a given session daemon, each Unix user has
320its own, private recording sessions. Note, however, that the `root` Unix
321user may operate on or destroy another user's recording session.
322
323Create a recording session with the man:lttng-create(1) command.
324
325List the recording sessions of the connected session daemon with
326the man:lttng-list(1) command.
327
328Start and stop a recording session with the man:lttng-start(1) and
329man:lttng-stop(1) commands.
330
331Save and load a recording session with the man:lttng-save(1) and
332man:lttng-load(1) commands.
333
334Archive the current trace chunk of (rotate) a recording session with the
335man:lttng-rotate(1) command.
336
337Destroy a recording session with the man:lttng-destroy(1) command.
338
339
340Current recording session
341~~~~~~~~~~~~~~~~~~~~~~~
342When you run the man:lttng-create(1) command, LTTng creates the
343`$LTTNG_HOME/.lttngrc` file if it doesn't exist (`$LTTNG_HOME` defaults
344to `$HOME`).
345
346`$LTTNG_HOME/.lttngrc` contains the name of the _current recording
347session_.
348
349When you create a new recording session with the `create` command, LTTng
350updates the current recording session.
351
352The following man:lttng(1) commands select the current recording session
353if you don't specify one:
354
355* man:lttng-add-context(1)
356* man:lttng-clear(1)
357* man:lttng-destroy(1)
358* man:lttng-disable-channel(1)
359* man:lttng-disable-event(1)
360* man:lttng-disable-rotation(1)
361* man:lttng-enable-channel(1)
362* man:lttng-enable-event(1)
363* man:lttng-enable-rotation(1)
364* man:lttng-regenerate(1)
365* man:lttng-rotate(1)
366* man:lttng-save(1)
367* man:lttng-snapshot(1)
368* man:lttng-start(1)
369* man:lttng-status(1)
370* man:lttng-stop(1)
371* man:lttng-track(1)
372* man:lttng-untrack(1)
373* man:lttng-view(1)
374
375Set the current recording session manually with the
376man:lttng-set-session(1) command, without having to edit the `.lttngrc`
377file.
378
379
380[[session-modes]]
381Recording session modes
382~~~~~~~~~~~~~~~~~~~~~~~
383LTTng offers four recording session modes:
384
385Local mode::
386 Write the trace data to the local file system.
387
388Network streaming mode::
389 Send the trace data over the network to a listening relay daemon
390 (see man:lttng-relayd(8)).
391
392Snapshot mode::
393 Only write the trace data to the local file system or send it to a
394 listening relay daemon (man:lttng-relayd(8)) when LTTng takes a
395 snapshot.
396+
397LTTng forces all the channels (see the ``<<channel,{sect-channel}>>''
398section below) to be created to be configured to be snapshot-ready.
399+
400LTTng takes a snapshot of such a recording session when:
401+
402--
403* You run the man:lttng-snapshot(1) command.
404
405* LTTng executes a `snapshot-session` trigger action (see the
406 ``<<trigger,TRIGGER>>'' section above).
407--
408
409Live mode::
410 Send the trace data over the network to a listening relay daemon
411 (see man:lttng-relayd(8)) for live reading.
412+
413An LTTng live reader (for example, man:babeltrace2(1)) can connect to
414the same relay daemon to receive trace data while the recording session is
415active.
416
417
418[[rotation]]
419Recording session rotation
420~~~~~~~~~~~~~~~~~~~~~~~~~~
421A _recording session rotation_ is the action of archiving the current
422trace chunk of the recording session to the file system.
423
424Once LTTng archives a trace chunk, it does :not: manage it anymore: you
425can read it, modify it, move it, or remove it.
426
427An _archived trace chunk_ is a collection of metadata and data stream
428files which form a self-contained LTTng trace. See the
429``<<trace-chunk-naming,Trace chunk naming>>'' section below to learn how
430LTTng names a trace chunk archive directory.
431
432The _current trace chunk_ of a given recording session includes:
433
434* The stream files which LTTng already wrote to the file system, and
435 which are not part of a previously archived trace chunk, since the
436 most recent event amongst:
437
438** The first time the recording session was started, either with the
439 man:lttng-start(1) command or with a `start-session` trigger action
440 (see the ``<<trigger,TRIGGER>>'' section above).
441
442** The last rotation, performed with:
443
444*** An man:lttng-rotate(1) command.
445
446*** A rotation schedule previously set with
447 man:lttng-enable-rotation(1).
448
449*** An executed `rotate-session` trigger action (see the
450 ``<<trigger,TRIGGER>>'' section above).
451
452* The content of all the non-flushed sub-buffers of the channels of the
453 recording session.
454
455
456[[trace-chunk-naming]]
457Trace chunk archive naming
458~~~~~~~~~~~~~~~~~~~~~~~~~~
459A trace chunk archive is a subdirectory of the `archives` subdirectory
460within the output directory of a recording session (see the
461nloption:--output option of the man:lttng-create(1) command and
462of man:lttng-relayd(8)).
463
464A trace chunk archive contains, through tracing domain and possibly
465UID/PID subdirectories, metadata and data stream files.
466
467A trace chunk archive is, at the same time:
468
469* A self-contained LTTng trace.
470
471* A member of a set of trace chunk archives which form the complete
472 trace of a recording session.
473
474In other words, an LTTng trace reader can read both the recording
475session output directory (all the trace chunk archives), or a
476single trace chunk archive.
477
478When LTTng performs a recording session rotation, it names the resulting
479trace chunk archive as such, relative to the output directory of the
480recording session:
481
482[verse]
483archives/__BEGIN__-__END__-__ID__
484
485__BEGIN__::
486 Date and time of the beginning of the trace chunk archive with
487 the ISO{nbsp}8601-compatible __YYYYmmddTHHMMSS±HHMM__ form, where
488 __YYYYmmdd__ is the date and __HHMMSS±HHMM__ is the time with the
489 time zone offset from UTC.
490+
491Example: `20171119T152407-0500`
492
493__END__::
494 Date and time of the end of the trace chunk archive with
495 the ISO{nbsp}8601-compatible __YYYYmmddTHHMMSS±HHMM__ form, where
496 __YYYYmmdd__ is the date and __HHMMSS±HHMM__ is the time with the
497 time zone offset from UTC.
498+
499Example: `20180118T152407+0930`
500
501__ID__::
502 Unique numeric identifier of the trace chunk within its recording
503 session.
504
505Trace chunk archive name example:
506
507----
508archives/20171119T152407-0500-20171119T151422-0500-3
509----
510
511
512[[domain]]
513{sect-domain}
514-------------
515A _tracing domain_ identifies a type of LTTng tracer.
516
517A tracing domain has its own properties and features.
518
519There are currently five available tracing domains:
520
521[options="header"]
522|===
523|Tracing domain |``Event rule matches'' trigger condition option |Option for other CLI commands
524
525|Linux kernel
526|nloption:--type option starts with `kernel:`
527|nloption:--kernel
528
529|User space
530|nloption:--type option starts with `user:`
531|nloption:--userspace
532
533|`java.util.logging` (JUL)
534|nloption:--type option starts with `jul:`
535|nloption:--jul
536
537|Apache Log4j 1.x
538|nloption:--type option starts with `log4j:`
539|nloption:--log4j
540
541|Apache Log4j 2
542|nloption:--type option starts with `log4j2:`
543|nloption:--log4j2
544
545|Python
546|nloption:--type option starts with `python:`
547|nloption:--python
548|===
549
550You must specify a tracing domain to target a type of LTTng tracer when
551using some man:lttng(1) commands to avoid ambiguity. For example,
552because the Linux kernel and user space tracing domains support named
553tracepoints as instrumentation points (see the
554``<<"event-rule","{sect-event-rule}">>'' section above), you need to
555specify a tracing domain when you create an event rule because both
556tracing domains could have tracepoints sharing the same name.
557
558You can create channels (see the ``<<channel,{sect-channel}>>'' section
559below) in the Linux kernel and user space tracing domains. The other
560tracing domains have a single, default channel.
561
562
563[[channel]]
564{sect-channel}
565--------------
566A _channel_ is an object which is responsible for a set of ring buffers.
567
568Each ring buffer is divided into multiple _sub-buffers_. When a
569recording event rule (see the
570``<<recording-event-rule,{sect-recording-event-rule}>>'' section below)
571matches an event, LTTng can record it to one or more sub-buffers of one
572or more channels.
573
574When you create a channel with the man:lttng-enable-channel(1) command,
575you set its final attributes, that is:
576
577* Its buffering scheme.
578+
579See the ``<<channel-buf-scheme,Buffering scheme>>'' section below.
580
581* What to do when there's no
582 space left for a new event record because all sub-buffers are full.
583+
584See the ``<<channel-er-loss-mode,Event record loss mode>>'' section
585below.
586
587* The size of each ring buffer and how many sub-buffers a ring buffer
588 has.
589+
590See the ``<<channel-sub-buf-size-count,Sub-buffer size and count>>''
591section below.
592
593* The size of each trace file LTTng writes for this channel and the
594 maximum count of trace files.
595+
596See the ``<<channel-max-trace-file-size-count,Maximum trace file size
597and count>>'' section below.
598
599* The periods of its read, switch, and monitor timers.
600+
601See the ``<<channel-timers,Timers>>'' section below.
602
603* For a Linux kernel channel: its output type (man:mmap(2) or
604 man:splice(2)).
605+
606See the nloption:--output option of the man:lttng-enable-channel(1)
607command.
608
609* For a user space channel: the value of its blocking timeout.
610+
611See the nloption:--blocking-timeout option of the
612man:lttng-enable-channel(1) command.
613
614Note that the man:lttng-enable-event(1) command can automatically create
615a default channel with sane defaults when no channel exists for the
616provided tracing domain.
617
618A channel is always associated to a tracing domain (see the
619``<<domain,{sect-domain}>>'' section below). The `java.util.logging`
620(JUL), log4j, log4j2 and Python tracing domains each have a default channel
621which you can't configure.
622
623A channel owns recording event rules.
624
625List the channels of a given recording session with the
626man:lttng-list(1) and man:lttng-status(1) commands.
627
628Disable an enabled channel with the man:lttng-disable-channel(1)
629command.
630
631
632[[channel-buf-scheme]]
633Buffering scheme
634~~~~~~~~~~~~~~~~
635A channel has at least one ring buffer per CPU. LTTng always records an
636event to the ring buffer dedicated to the CPU which emits it.
637
638The buffering scheme of a user space channel determines what has its own
639set of per-CPU ring buffers:
640
641Per-user buffering (nloption:--buffers-uid option of the man:lttng-enable-channel(1) command)::
642 Allocate one set of ring buffers (one per CPU) shared by all the
643 instrumented processes of:
644 If your Unix user is `root`:::
645 Each Unix user.
646 Otherwise:::
647 Your Unix user.
648
649Per-process buffering (nloption:--buffers-pid option of the man:lttng-enable-channel(1) command)::
650 Allocate one set of ring buffers (one per CPU) for each instrumented
651 process of:
652 If your Unix user is `root`:::
653 All Unix users.
654 Otherwise:::
655 Your Unix user.
656
657The per-process buffering scheme tends to consume more memory than the
658per-user option because systems generally have more instrumented
659processes than Unix users running instrumented processes. However, the
660per-process buffering scheme ensures that one process having a high
661event throughput won't fill all the shared sub-buffers of the same Unix
662user, only its own.
663
664The buffering scheme of a Linux kernel channel is always to allocate a
665single set of ring buffers for the whole system. This scheme is similar
666to the per-user option, but with a single, global user ``running'' the
667kernel.
668
669
670[[channel-er-loss-mode]]
671Event record loss mode
672~~~~~~~~~~~~~~~~~~~~~~
673When LTTng emits an event, LTTng can record it to a specific, available
674sub-buffer within the ring buffers of specific channels. When there's no
675space left in a sub-buffer, the tracer marks it as consumable and
676another, available sub-buffer starts receiving the following event
677records. An LTTng consumer daemon eventually consumes the marked
678sub-buffer, which returns to the available state.
679
680In an ideal world, sub-buffers are consumed faster than they are filled.
681In the real world, however, all sub-buffers can be full at some point,
682leaving no space to record the following events.
683
684By default, LTTng-modules and LTTng-UST are _non-blocking_ tracers: when
685there's no available sub-buffer to record an event, it's acceptable to
686lose event records when the alternative would be to cause substantial
687delays in the execution of the instrumented application. LTTng
688privileges performance over integrity; it aims at perturbing the
689instrumented application as little as possible in order to make the
690detection of subtle race conditions and rare interrupt cascades
691possible.
692
693Since LTTng{nbsp}2.10, the LTTng user space tracer, LTTng-UST, supports
694a _blocking mode_. See the nloption:--blocking-timeout of the
695man:lttng-enable-channel(1) command to learn how to use the blocking
696mode.
697
698When it comes to losing event records because there's no available
699sub-buffer, or because the blocking timeout of the channel is
700reached, the _event record loss mode_ of the channel determines what to
701do. The available event record loss modes are:
702
703Discard mode::
704 Drop the newest event records until a sub-buffer becomes available.
705+
706This is the only available mode when you specify a blocking timeout.
707+
708With this mode, LTTng increments a count of lost event records when an
709event record is lost and saves this count to the trace. A trace reader
710can use the saved discarded event record count of the trace to decide
711whether or not to perform some analysis even if trace data is known to
712be missing.
713
714Overwrite mode::
715 Clear the sub-buffer containing the oldest event records and start
716 writing the newest event records there.
717+
718This mode is sometimes called _flight recorder mode_ because it's
719similar to a https://en.wikipedia.org/wiki/Flight_recorder[flight
720recorder]: always keep a fixed amount of the latest data. It's also
721similar to the roll mode of an oscilloscope.
722+
723Since LTTng{nbsp}2.8, with this mode, LTTng writes to a given sub-buffer
724its sequence number within its data stream. With a local, network
725streaming, or live recording session (see the
726``<<session-modes,Recording session modes>>'' section above), a trace
727reader can use such sequence numbers to report lost packets. A trace
728reader can use the saved discarded sub-buffer (packet) count of the
729trace to decide whether or not to perform some analysis even if trace
730data is known to be missing.
731+
732With this mode, LTTng doesn't write to the trace the exact number of
733lost event records in the lost sub-buffers.
734
735Which mechanism you should choose depends on your context: prioritize
736the newest or the oldest event records in the ring buffer?
737
738Beware that, in overwrite mode, the tracer abandons a _whole sub-buffer_
739as soon as a there's no space left for a new event record, whereas in
740discard mode, the tracer only discards the event record that doesn't
741fit.
742
743Set the event record loss mode of a channel with the nloption:--discard
744and nloption:--overwrite options of the man:lttng-enable-channel(1)
745command.
746
747There are a few ways to decrease your probability of losing event
748records. The ``<<channel-sub-buf-size-count,Sub-buffer size and
749count>>'' section below shows how to fine-tune the sub-buffer size and
750count of a channel to virtually stop losing event records, though at the
751cost of greater memory usage.
752
753
754[[channel-sub-buf-size-count]]
755Sub-buffer size and count
756~~~~~~~~~~~~~~~~~~~~~~~~~
757A channel has one or more ring buffer for each CPU of the target system.
758
759See the ``<<channel-buf-scheme,Buffering scheme>>'' section above to
760learn how many ring buffers of a given channel are dedicated to each CPU
761depending on its buffering scheme.
762
763Set the size of each sub-buffer the ring buffers of a channel contain
764with the nloption:--subbuf-size option of the
765man:lttng-enable-channel(1) command.
766
767Set the number of sub-buffers each ring buffer of a channel contains
768with the nloption:--num-subbuf option of the man:lttng-enable-channel(1)
769command.
770
771Note that LTTng switching the current sub-buffer of a ring buffer
772(marking a full one as consumable and switching to an available one for
773LTTng to record the next events) introduces noticeable CPU overhead.
774Knowing this, the following list presents a few practical situations
775along with how to configure the sub-buffer size and count for them:
776
777High event throughput::
778 In general, prefer large sub-buffers to lower the risk of losing
779 event records.
780+
781Having larger sub-buffers also ensures a lower sub-buffer switching
782frequency (see the ``<<channel-timers,Timers>>'' section below).
783+
784The sub-buffer count is only meaningful if you create the channel in
785overwrite mode (see the ``<<channel-er-loss-mode,Event record loss
786mode>>'' section above): in this case, if LTTng overwrites a sub-buffer,
787then the other sub-buffers are left unaltered.
788
789Low event throughput::
790 In general, prefer smaller sub-buffers since the risk of losing
791 event records is low.
792+
793Because LTTng emits events less frequently, the sub-buffer switching
794frequency should remain low and therefore the overhead of the tracer
795shouldn't be a problem.
796
797Low memory system::
798 If your target system has a low memory limit, prefer fewer first,
799 then smaller sub-buffers.
800+
801Even if the system is limited in memory, you want to keep the
802sub-buffers as large as possible to avoid a high sub-buffer switching
803frequency.
804
805Note that LTTng uses https://diamon.org/ctf/[CTF] as its trace format,
806which means event record data is very compact. For example, the average
807LTTng kernel event record weights about 32{nbsp}bytes. Therefore, a
808sub-buffer size of 1{nbsp}MiB is considered large.
809
810The previous scenarios highlight the major trade-off between a few large
811sub-buffers and more, smaller sub-buffers: sub-buffer switching
812frequency vs. how many event records are lost in overwrite mode.
813Assuming a constant event throughput and using the overwrite mode, the
814two following configurations have the same ring buffer total size:
815
816Two sub-buffers of 4{nbsp}MiB each::
817 Expect a very low sub-buffer switching frequency, but if LTTng
818 ever needs to overwrite a sub-buffer, half of the event records so
819 far (4{nbsp}MiB) are definitely lost.
820
821Eight sub-buffers of 1{nbsp}MiB each::
822 Expect four times the tracer overhead of the configuration above,
823 but if LTTng needs to overwrite a sub-buffer, only the eighth of
824 event records so far (1{nbsp}MiB) are definitely lost.
825
826In discard mode, the sub-buffer count parameter is pointless: use two
827sub-buffers and set their size according to your requirements.
828
829
830[[channel-max-trace-file-size-count]]
831Maximum trace file size and count
832~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
833By default, trace files can grow as large as needed.
834
835Set the maximum size of each trace file that LTTng writes of a given
836channel with the nloption:--tracefile-size option of the man:lttng-enable-channel(1)
837command.
838
839When the size of a trace file reaches the fixed maximum size of the
840channel, LTTng creates another file to contain the next event records.
841LTTng appends a file count to each trace file name in this case.
842
843If you set the trace file size attribute when you create a channel, the
844maximum number of trace files that LTTng creates is _unlimited_ by
845default. To limit them, use the nloption:--tracefile-count option of
846man:lttng-enable-channel(1). When the number of trace files reaches the
847fixed maximum count of the channel, LTTng overwrites the oldest trace
848file. This mechanism is called _trace file rotation_.
849
850[IMPORTANT]
851====
852Even if you don't limit the trace file count, always assume that LTTng
853manages all the trace files of the recording session.
854
855In other words, there's no safe way to know if LTTng still holds a given
856trace file open with the trace file rotation feature.
857
858The only way to obtain an unmanaged, self-contained LTTng trace before
859you destroy the recording session is with the recording session rotation
860feature (see the ``<<rotation,Recording session rotation>>'' section
861above), which is available since LTTng{nbsp}2.11.
862====
863
864
865[[channel-timers]]
866Timers
867~~~~~~
868Each channel can have up to three optional timers:
869
870Switch timer::
871 When this timer expires, a sub-buffer switch happens: for each ring
872 buffer of the channel, LTTng marks the current sub-buffer as
873 consumable and switches to an available one to record the next
874 events.
875+
876A switch timer is useful to ensure that LTTng consumes and commits trace
877data to trace files or to a distant relay daemon (man:lttng-relayd(8))
878periodically in case of a low event throughput.
879+
880Such a timer is also convenient when you use large sub-buffers (see the
881``<<channel-sub-buf-size-count,Sub-buffer size and count>>'' section
882above) to cope with a sporadic high event throughput, even if the
883throughput is otherwise low.
884+
885Set the period of the switch timer of a channel, or disable the timer
886altogether, with the nloption:--switch-timer option of the
887man:lttng-enable-channel(1) command.
888
889Read timer::
890 When this timer expires, LTTng checks for full, consumable
891 sub-buffers.
892+
893By default, the LTTng tracers use an asynchronous message mechanism to
894signal a full sub-buffer so that a consumer daemon can consume it.
895+
896When such messages must be avoided, for example in real-time
897applications, use this timer instead.
898+
899Set the period of the read timer of a channel, or disable the timer
900altogether, with the nloption:--read-timer option of the
901man:lttng-enable-channel(1) command.
902
903Monitor timer::
904 When this timer expires, the consumer daemon samples some channel
905 statistics to evaluate the following trigger conditions:
906+
907--
908. The consumed buffer size of a given recording session becomes greater
909 than some value.
910. The buffer usage of a given channel becomes greater than some value.
911. The buffer usage of a given channel becomes less than some value.
912--
913+
914If you disable the monitor timer of a channel{nbsp}__C__:
915+
916--
917* The consumed buffer size value of the recording session of{nbsp}__C__
918 could be wrong for trigger condition type{nbsp}1: the consumed buffer
919 size of{nbsp}__C__ won't be part of the grand total.
920
921* The buffer usage trigger conditions (types{nbsp}2 and{nbsp}3)
922 for{nbsp}__C__ will never be satisfied.
923--
924+
925See the ``<<trigger,TRIGGER>>'' section above to learn more about
926triggers.
927+
928Set the period of the monitor timer of a channel, or disable the timer
929altogether, with the nloption:--monitor-timer option of the
930man:lttng-enable-channel(1) command.
931
932
933[[recording-event-rule]]
934{sect-recording-event-rule}
935---------------------------
936A _recording event rule_ is a specific type of event rule (see the
937``<<"event-rule","{sect-event-rule}">>'' section above) of which the
938action is to serialize and record the matched event as an _event
939record_.
940
941Set the explicit conditions of a recording event rule when you create it
942with the man:lttng-enable-event(1) command. A recording event rule also
943has the following implicit conditions:
944
945* The recording event rule itself is enabled.
946+
947A recording event rule is enabled on creation.
948
949* The channel to which the recording event rule is attached is enabled.
950+
951A channel is enabled on creation.
952+
953See the ``<<channel,{sect-channel}>>'' section above.
954
955* The recording session of the recording event rule is active (started).
956+
957A recording session is inactive (stopped) on creation.
958+
959See the ``<<session,{sect-session}>>'' section above.
960
961* The process for which LTTng creates an event to match is allowed to
962 record events.
963+
964All processes are allowed to record events on recording session
965creation.
966+
967Use the man:lttng-track(1) and man:lttng-untrack(1) commands to select
968which processes are allowed to record events based on specific process
969attributes.
970
971You always attach a recording event rule to a channel, which belongs to
972a recording session, when you create it.
973
974When a recording event rule{nbsp}__ER__ matches an event{nbsp}__E__,
975LTTng attempts to serialize and record{nbsp}__E__ to one of the
976available sub-buffers of the channel to which{nbsp}__E__ is attached.
977
978When multiple matching recording event rules are attached to the same
979channel, LTTng attempts to serialize and record the matched event
980_once_. In the following example, the second recording event rule is
981redundant when both are enabled:
982
983[role="term"]
984----
985$ lttng enable-event --userspace hello:world
986$ lttng enable-event --userspace hello:world --loglevel=INFO
987----
988
989List the recording event rules of a specific recording session
990and/or channel with the man:lttng-list(1) and man:lttng-status(1)
991commands.
992
993Disable a recording event rule with the man:lttng-disable-event(1)
994command.
995
996As of LTTng{nbsp}{lttng_version}, you cannot remove a recording event
997rule: it exists as long as its recording session exists.
998
999
1000include::common-footer.txt[]
1001
1002
1003SEE ALSO
1004--------
1005man:lttng(1),
1006man:lttng-relayd(8),
1007man:lttng-sessiond(8)
This page took 0.026769 seconds and 5 git commands to generate.