2.8, 2.9: add links to distribution websites
[lttng-docs.git] / 2.9 / lttng-docs-2.9.txt
CommitLineData
7e35c904
PP
1The LTTng Documentation
2=======================
3Philippe Proulx <pproulx@efficios.com>
d522e823 4v2.9, 2 December 2016
7e35c904
PP
5
6
7include::../common/copyright.txt[]
8
9
10include::../common/welcome.txt[]
11
12
13include::../common/audience.txt[]
14
15
16[[chapters]]
17=== What's in this documentation?
18
19The LTTng Documentation is divided into the following sections:
20
21* **<<nuts-and-bolts,Nuts and bolts>>** explains the
22 rudiments of software tracing and the rationale behind the
23 LTTng project.
24+
25You can skip this section if you’re familiar with software tracing and
26with the LTTng project.
27
28* **<<installing-lttng,Installation>>** describes the steps to
29 install the LTTng packages on common Linux distributions and from
30 their sources.
31+
32You can skip this section if you already properly installed LTTng on
33your target system.
34
35* **<<getting-started,Quick start>>** is a concise guide to
36 getting started quickly with LTTng kernel and user space tracing.
37+
38We recommend this section if you're new to LTTng or to software tracing
39in general.
40+
41You can skip this section if you're not new to LTTng.
42
43* **<<core-concepts,Core concepts>>** explains the concepts at
44 the heart of LTTng.
45+
46It's a good idea to become familiar with the core concepts
47before attempting to use the toolkit.
48
49* **<<plumbing,Components of LTTng>>** describes the various components
50 of the LTTng machinery, like the daemons, the libraries, and the
51 command-line interface.
52* **<<instrumenting,Instrumentation>>** shows different ways to
53 instrument user applications and the Linux kernel.
54+
55Instrumenting source code is essential to provide a meaningful
56source of events.
57+
58You can skip this section if you do not have a programming background.
59
60* **<<controlling-tracing,Tracing control>>** is divided into topics
61 which demonstrate how to use the vast array of features that
62 LTTng{nbsp}{revision} offers.
63* **<<reference,Reference>>** contains reference tables.
64* **<<glossary,Glossary>>** is a specialized dictionary of terms related
65 to LTTng or to the field of software tracing.
66
67
68include::../common/convention.txt[]
69
70
71include::../common/acknowledgements.txt[]
72
73
74[[whats-new]]
75== What's new in LTTng {revision}?
76
77* **Tracing control**:
78** You can override the name or the URL of a tracing session
79 configuration when you use man:lttng-load(1) thanks to the new
80 opt:lttng-load(1):--override-name and
81 opt:lttng-load(1):--override-url options.
82** The new `lttng regenerate` command replaces the now deprecated
83 `lttng metadata` command of LTTng 2.8. man:lttng-regenerate(1) can
84 also <<regenerate-statedump,generate the state dump event records>>
85 of a given tracing session on demand, a handy feature when
86 <<taking-a-snapshot,taking a snapshot>>.
87** You can add PMU counters by raw ID with man:lttng-add-context(1):
88+
89--
90[role="term"]
91----
92lttng add-context --kernel --type=perf:cpu:raw:r0013c:x86unhalted
93----
94--
95+
96The format of the raw ID is the same as used with man:perf-record(1).
97See <<adding-context,Add context fields to a channel>> for more
98examples.
99
100** The LTTng <<lttng-relayd,relay daemon>> is now supported on
101 OS{nbsp}X and macOS for a smoother integration within a trace
102 analysis workflow, regardless of the platform used.
103
104* **User space tracing**:
105** Improved performance (tested on x86-64 and ARMv7-A
106 (https://en.wikipedia.org/wiki/Cubieboard[Cubieboard])
107 architectures).
108** New helper library (`liblttng-ust-fd`) to help with
109 <<liblttng-ust-fd,applications which close file descriptors that
110 don't belong to them>>, for example, in a loop which closes file
111 descriptors after man:fork(2), or BSD's `closeall()`.
112** More accurate <<liblttng-ust-dl,dynamic linker instrumentation>> and
113 state dump event records, especially when a dynamically loaded
114 library manually loads its own dependencies.
115** New `ctf_*()` field definition macros (see man:lttng-ust(3)):
116*** `ctf_array_hex()`
117*** `ctf_array_network()`
118*** `ctf_array_network_hex()`
119*** `ctf_sequence_hex()`
120*** `ctf_sequence_network()`
121*** `ctf_sequence_network_hex()`
122** New `lttng_ust_loaded` weak symbol defined by `liblttng-ust` for
123 an application to know if the LTTng-UST shared library is loaded
124 or not:
125+
126--
127[source,c]
128----
129#include <stdio.h>
130
131int lttng_ust_loaded __attribute__((weak));
132
133int main(void)
134{
135 if (lttng_ust_loaded) {
136 puts("LTTng-UST is loaded!");
137 } else {
138 puts("LTTng-UST is not loaded!");
139 }
140
141 return 0;
142}
143----
144--
145
146** LTTng-UST thread names have the `-ust` suffix.
147
148* **Linux kernel tracing**:
149** Improved performance (tested on x86-64 and ARMv7-A
150 (https://en.wikipedia.org/wiki/Cubieboard[Cubieboard])
151 architectures).
152** New enumeration <<lttng-modules-tp-fields,field definition macros>>:
153 `ctf_enum()` and `ctf_user_enum()`.
154** IPv4, IPv6, and TCP header data is recorded in the event records
155 produced by tracepoints starting with `net_`.
156** Detailed system call event records: `select`, `pselect6`, `poll`,
157 `ppoll`, `epoll_wait`, `epoll_pwait`, and `epoll_ctl` on all
158 architectures supported by LTTng-modules, and `accept4` on x86-64.
159** New I²C instrumentation: the `extract_sensitive_payload` parameter
160 of the new `lttng-probe-i2c` LTTng module controls whether or not
161 the payloads of I²C messages are recorded in I²C event records, since
162 they may contain sensitive data (for example, keystrokes).
163** When the LTTng kernel modules are built into the Linux kernel image,
164 the `CONFIG_TRACEPOINTS` configuration option is automatically
165 selected.
166
167
168[[nuts-and-bolts]]
169== Nuts and bolts
170
171What is LTTng? As its name suggests, the _Linux Trace Toolkit: next
172generation_ is a modern toolkit for tracing Linux systems and
173applications. So your first question might be:
174**what is tracing?**
175
176
177[[what-is-tracing]]
178=== What is tracing?
179
180As the history of software engineering progressed and led to what
181we now take for granted--complex, numerous and
182interdependent software applications running in parallel on
183sophisticated operating systems like Linux--the authors of such
184components, software developers, began feeling a natural
185urge to have tools that would ensure the robustness and good performance
186of their masterpieces.
187
188One major achievement in this field is, inarguably, the
189https://www.gnu.org/software/gdb/[GNU debugger (GDB)],
190an essential tool for developers to find and fix bugs. But even the best
191debugger won't help make your software run faster, and nowadays, faster
192software means either more work done by the same hardware, or cheaper
193hardware for the same work.
194
195A _profiler_ is often the tool of choice to identify performance
196bottlenecks. Profiling is suitable to identify _where_ performance is
197lost in a given software. The profiler outputs a profile, a statistical
198summary of observed events, which you may use to discover which
199functions took the most time to execute. However, a profiler won't
200report _why_ some identified functions are the bottleneck. Bottlenecks
201might only occur when specific conditions are met, conditions that are
202sometimes impossible to capture by a statistical profiler, or impossible
203to reproduce with an application altered by the overhead of an
204event-based profiler. For a thorough investigation of software
205performance issues, a history of execution is essential, with the
206recorded values of variables and context fields you choose, and
207with as little influence as possible on the instrumented software. This
208is where tracing comes in handy.
209
210_Tracing_ is a technique used to understand what goes on in a running
211software system. The software used for tracing is called a _tracer_,
212which is conceptually similar to a tape recorder. When recording,
213specific instrumentation points placed in the software source code
214generate events that are saved on a giant tape: a _trace_ file. You
215can trace user applications and the operating system at the same time,
216opening the possibility of resolving a wide range of problems that would
217otherwise be extremely challenging.
218
219Tracing is often compared to _logging_. However, tracers and loggers are
220two different tools, serving two different purposes. Tracers are
221designed to record much lower-level events that occur much more
222frequently than log messages, often in the range of thousands per
223second, with very little execution overhead. Logging is more appropriate
224for a very high-level analysis of less frequent events: user accesses,
225exceptional conditions (errors and warnings, for example), database
226transactions, instant messaging communications, and such. Simply put,
227logging is one of the many use cases that can be satisfied with tracing.
228
229The list of recorded events inside a trace file can be read manually
230like a log file for the maximum level of detail, but it is generally
231much more interesting to perform application-specific analyses to
232produce reduced statistics and graphs that are useful to resolve a
233given problem. Trace viewers and analyzers are specialized tools
234designed to do this.
235
236In the end, this is what LTTng is: a powerful, open source set of
237tools to trace the Linux kernel and user applications at the same time.
238LTTng is composed of several components actively maintained and
239developed by its link:/community/#where[community].
240
241
242[[lttng-alternatives]]
243=== Alternatives to noch:{LTTng}
244
245Excluding proprietary solutions, a few competing software tracers
246exist for Linux:
247
248* https://github.com/dtrace4linux/linux[dtrace4linux] is a port of
249 Sun Microsystems's DTrace to Linux. The cmd:dtrace tool interprets
250 user scripts and is responsible for loading code into the
251 Linux kernel for further execution and collecting the outputted data.
252* https://en.wikipedia.org/wiki/Berkeley_Packet_Filter[eBPF] is a
253 subsystem in the Linux kernel in which a virtual machine can execute
254 programs passed from the user space to the kernel. You can attach
255 such programs to tracepoints and KProbes thanks to a system call, and
256 they can output data to the user space when executed thanks to
257 different mechanisms (pipe, VM register values, and eBPF maps, to name
258 a few).
259* https://www.kernel.org/doc/Documentation/trace/ftrace.txt[ftrace]
260 is the de facto function tracer of the Linux kernel. Its user
261 interface is a set of special files in sysfs.
262* https://perf.wiki.kernel.org/[perf] is
263 a performance analyzing tool for Linux which supports hardware
264 performance counters, tracepoints, as well as other counters and
265 types of probes. perf's controlling utility is the cmd:perf command
266 line/curses tool.
267* http://linux.die.net/man/1/strace[strace]
268 is a command-line utility which records system calls made by a
269 user process, as well as signal deliveries and changes of process
270 state. strace makes use of https://en.wikipedia.org/wiki/Ptrace[ptrace]
271 to fulfill its function.
272* http://www.sysdig.org/[sysdig], like SystemTap, uses scripts to
273 analyze Linux kernel events. You write scripts, or _chisels_ in
274 sysdig's jargon, in Lua and sysdig executes them while the system is
275 being traced or afterwards. sysdig's interface is the cmd:sysdig
276 command-line tool as well as the curses-based cmd:csysdig tool.
277* https://sourceware.org/systemtap/[SystemTap] is a Linux kernel and
278 user space tracer which uses custom user scripts to produce plain text
279 traces. SystemTap converts the scripts to the C language, and then
280 compiles them as Linux kernel modules which are loaded to produce
281 trace data. SystemTap's primary user interface is the cmd:stap
282 command-line tool.
283
284The main distinctive features of LTTng is that it produces correlated
285kernel and user space traces, as well as doing so with the lowest
286overhead amongst other solutions. It produces trace files in the
287http://diamon.org/ctf[CTF] format, a file format optimized
288for the production and analyses of multi-gigabyte data.
289
290LTTng is the result of more than 10 years of active open source
291development by a community of passionate developers.
292LTTng{nbsp}{revision} is currently available on major desktop and server
293Linux distributions.
294
295The main interface for tracing control is a single command-line tool
296named cmd:lttng. The latter can create several tracing sessions, enable
297and disable events on the fly, filter events efficiently with custom
298user expressions, start and stop tracing, and much more. LTTng can
299record the traces on the file system or send them over the network, and
300keep them totally or partially. You can view the traces once tracing
301becomes inactive or in real-time.
302
303<<installing-lttng,Install LTTng now>> and
304<<getting-started,start tracing>>!
305
306
307[[installing-lttng]]
308== Installation
309
310**LTTng** is a set of software <<plumbing,components>> which interact to
311<<instrumenting,instrument>> the Linux kernel and user applications, and
312to <<controlling-tracing,control tracing>> (start and stop
313tracing, enable and disable event rules, and the rest). Those
314components are bundled into the following packages:
315
316* **LTTng-tools**: Libraries and command-line interface to
317 control tracing.
318* **LTTng-modules**: Linux kernel modules to instrument and
319 trace the kernel.
320* **LTTng-UST**: Libraries and Java/Python packages to instrument and
321 trace user applications.
322
323Most distributions mark the LTTng-modules and LTTng-UST packages as
324optional when installing LTTng-tools (which is always required). In the
325following sections, we always provide the steps to install all three,
326but note that:
327
328* You only need to install LTTng-modules if you intend to trace the
329 Linux kernel.
330* You only need to install LTTng-UST if you intend to trace user
331 applications.
332
333[role="growable"]
d522e823 334.Availability of LTTng{nbsp}{revision} for major Linux distributions as of 2 December 2016.
7e35c904
PP
335|====
336|Distribution |Available in releases |Alternatives
337
4515af6e 338|https://www.ubuntu.com/[Ubuntu]
7e35c904
PP
339|Ubuntu{nbsp}14.04 _Trusty Tahr_ and Ubuntu{nbsp}16.04 _Xenial Xerus_:
340<<ubuntu-ppa,use the LTTng Stable{nbsp}{revision} PPA>>.
341|link:/docs/v2.8#doc-ubuntu[LTTng{nbsp}2.8 for Ubuntu{nbsp}16.10 _Yakkety Yak_].
342
343<<building-from-source,Build LTTng{nbsp}{revision} from source>> for
344other Ubuntu releases.
345
4515af6e 346|https://getfedora.org/[Fedora]
7e35c904
PP
347|_Not available_
348|<<building-from-source,Build LTTng-modules{nbsp}{revision} from
349source>>.
350
4515af6e 351|https://www.debian.org/[Debian]
7e35c904
PP
352|_Not available_
353|<<building-from-source,Build LTTng-modules{nbsp}{revision} from
354source>>.
355
4515af6e 356|https://www.opensuse.org/[openSUSE]
7e35c904
PP
357|_Not available_
358|<<building-from-source,Build LTTng-modules{nbsp}{revision} from
359source>>.
360
4515af6e 361|https://www.archlinux.org/[Arch Linux]
7e35c904
PP
362|<<arch-linux,Latest AUR packages>>.
363|
364
4515af6e 365|https://alpinelinux.org/[Alpine Linux]
7e35c904
PP
366|_Not available_
367|link:/docs/v2.8#doc-alpine-linux[LTTng{nbsp}2.8 for Alpine Linux{nbsp}"edge"].
368
369LTTng{nbsp}2.8 for Alpine Linux{nbsp}3.5 (not released yet).
370
371<<building-from-source,Build LTTng{nbsp}{revision} from source>> for
372other Alpine Linux releases.
373
4515af6e 374|https://www.redhat.com/[RHEL] and https://www.suse.com/[SLES]
7e35c904
PP
375|See http://packages.efficios.com/[EfficiOS Enterprise Packages].
376|
377
4515af6e 378|https://buildroot.org/[Buildroot]
7e35c904 379|_Not available_
d522e823 380|link:/docs/v2.8#doc-buildroot[LTTng{nbsp}2.8 for Buildroot{nbsp}2016.11].
7e35c904
PP
381
382<<building-from-source,Build LTTng{nbsp}{revision} from source>> for
383other Buildroot releases.
384
4515af6e
PP
385|http://www.openembedded.org/wiki/Main_Page[OpenEmbedded] and
386https://www.yoctoproject.org/[Yocto]
7e35c904
PP
387|_Not available_
388|link:/docs/v2.8#doc-oe-yocto[LTTng{nbsp}2.8 for Yocto Project{nbsp}2.2 _Morty_]
389(`openembedded-core` layer).
390
391<<building-from-source,Build LTTng{nbsp}{revision} from source>> for
392other OpenEmbedded releases.
393|====
394
395
396[[ubuntu]]
397=== [[ubuntu-official-repositories]]Ubuntu
398
399[[ubuntu-ppa]]
400==== noch:{LTTng} Stable {revision} PPA
401
402The https://launchpad.net/~lttng/+archive/ubuntu/stable-{revision}[LTTng
403Stable{nbsp}{revision} PPA] offers the latest stable
404LTTng{nbsp}{revision} packages for:
405
406* Ubuntu{nbsp}14.04 _Trusty Tahr_
407* Ubuntu{nbsp}16.04 _Xenial Xerus_
408
409To install LTTng{nbsp}{revision} from the LTTng Stable{nbsp}{revision} PPA:
410
411. Add the LTTng Stable{nbsp}{revision} PPA repository and update the
412 list of packages:
413+
414--
415[role="term"]
416----
417sudo apt-add-repository ppa:lttng/stable-2.9
418sudo apt-get update
419----
420--
421
422. Install the main LTTng{nbsp}{revision} packages:
423+
424--
425[role="term"]
426----
427sudo apt-get install lttng-tools
428sudo apt-get install lttng-modules-dkms
429sudo apt-get install liblttng-ust-dev
430----
431--
432
433. **If you need to instrument and trace
434 <<java-application,Java applications>>**, install the LTTng-UST
435 Java agent:
436+
437--
438[role="term"]
439----
440sudo apt-get install liblttng-ust-agent-java
441----
442--
443
444. **If you need to instrument and trace
445 <<python-application,Python{nbsp}3 applications>>**, install the
446 LTTng-UST Python agent:
447+
448--
449[role="term"]
450----
451sudo apt-get install python3-lttngust
452----
453--
454
455
456[[arch-linux]]
457=== Arch Linux
458
459To install LTTng{nbsp}{revision} on Arch Linux using
460https://archlinux.fr/yaourt-en[Yaourt]:
461
462. Install the main LTTng{nbsp}{revision} packages:
463+
464--
465[role="term"]
466----
467yaourt -S lttng-tools
468yaourt -S lttng-ust
469yaourt -S lttng-modules
470----
471--
472
473. **If you need to instrument and trace <<python-application,Python
474 applications>>**, install the LTTng-UST Python agent:
475+
476--
477[role="term"]
478----
479yaourt -S python-lttngust
480yaourt -S python2-lttngust
481----
482--
483
484
485[[enterprise-distributions]]
486=== RHEL, SUSE, and other enterprise distributions
487
488To install LTTng on enterprise Linux distributions, such as Red Hat
489Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SUSE), please
490see http://packages.efficios.com/[EfficiOS Enterprise Packages].
491
492
493[[building-from-source]]
494=== Build from source
495
496To build and install LTTng{nbsp}{revision} from source:
497
498. Using your distribution's package manager, or from source, install
499 the following dependencies of LTTng-tools and LTTng-UST:
500+
501--
502* https://sourceforge.net/projects/libuuid/[libuuid]
503* http://directory.fsf.org/wiki/Popt[popt]
504* http://liburcu.org/[Userspace RCU]
505* http://www.xmlsoft.org/[libxml2]
506--
507
508. Download, build, and install the latest LTTng-modules{nbsp}{revision}:
509+
510--
511[role="term"]
512----
513cd $(mktemp -d) &&
514wget http://lttng.org/files/lttng-modules/lttng-modules-latest-2.9.tar.bz2 &&
515tar -xf lttng-modules-latest-2.9.tar.bz2 &&
516cd lttng-modules-2.9.* &&
517make &&
518sudo make modules_install &&
519sudo depmod -a
520----
521--
522
523. Download, build, and install the latest LTTng-UST{nbsp}{revision}:
524+
525--
526[role="term"]
527----
528cd $(mktemp -d) &&
529wget http://lttng.org/files/lttng-ust/lttng-ust-latest-2.9.tar.bz2 &&
530tar -xf lttng-ust-latest-2.9.tar.bz2 &&
531cd lttng-ust-2.9.* &&
532./configure &&
533make &&
534sudo make install &&
535sudo ldconfig
536----
537--
538+
539--
540[IMPORTANT]
541.Java and Python application tracing
542====
543If you need to instrument and trace <<java-application,Java
544applications>>, pass the `--enable-java-agent-jul`,
545`--enable-java-agent-log4j`, or `--enable-java-agent-all` options to the
546`configure` script, depending on which Java logging framework you use.
547
548If you need to instrument and trace <<python-application,Python
549applications>>, pass the `--enable-python-agent` option to the
550`configure` script. You can set the `PYTHON` environment variable to the
551path to the Python interpreter for which to install the LTTng-UST Python
552agent package.
553====
554--
555+
556--
557[NOTE]
558====
559By default, LTTng-UST libraries are installed to
560dir:{/usr/local/lib}, which is the de facto directory in which to
561keep self-compiled and third-party libraries.
562
563When <<building-tracepoint-providers-and-user-application,linking an
564instrumented user application with `liblttng-ust`>>:
565
566* Append `/usr/local/lib` to the env:LD_LIBRARY_PATH environment
567 variable.
568* Pass the `-L/usr/local/lib` and `-Wl,-rpath,/usr/local/lib` options to
569 man:gcc(1), man:g++(1), or man:clang(1).
570====
571--
572
573. Download, build, and install the latest LTTng-tools{nbsp}{revision}:
574+
575--
576[role="term"]
577----
578cd $(mktemp -d) &&
579wget http://lttng.org/files/lttng-tools/lttng-tools-latest-2.9.tar.bz2 &&
580tar -xf lttng-tools-latest-2.9.tar.bz2 &&
581cd lttng-tools-2.9.* &&
582./configure &&
583make &&
584sudo make install &&
585sudo ldconfig
586----
587--
588
589TIP: The https://github.com/eepp/vlttng[vlttng tool] can do all the
590previous steps automatically for a given version of LTTng and confine
591the installed files in a specific directory. This can be useful to test
592LTTng without installing it on your system.
593
594
595[[getting-started]]
596== Quick start
597
598This is a short guide to get started quickly with LTTng kernel and user
599space tracing.
600
601Before you follow this guide, make sure to <<installing-lttng,install>>
602LTTng.
603
604This tutorial walks you through the steps to:
605
606. <<tracing-the-linux-kernel,Trace the Linux kernel>>.
607. <<tracing-your-own-user-application,Trace a user application>> written
608 in C.
609. <<viewing-and-analyzing-your-traces,View and analyze the
610 recorded events>>.
611
612
613[[tracing-the-linux-kernel]]
614=== Trace the Linux kernel
615
616The following command lines start with cmd:sudo because you need root
617privileges to trace the Linux kernel. You can avoid using cmd:sudo if
618your Unix user is a member of the <<lttng-sessiond,tracing group>>.
619
620. Create a <<tracing-session,tracing session>>:
621+
622--
623[role="term"]
624----
625sudo lttng create my-kernel-session
626----
627--
628
629. List the available kernel tracepoints and system calls:
630+
631--
632[role="term"]
633----
634lttng list --kernel
635----
636--
637
638. Create an <<event,event rule>> which matches the desired event names,
639 for example `sched_switch` and `sched_process_fork`:
640+
641--
642[role="term"]
643----
644sudo lttng enable-event --kernel sched_switch,sched_process_fork
645----
646--
647+
648You can also create an event rule which _matches_ all the Linux kernel
649tracepoints (this will generate a lot of data when tracing):
650+
651--
652[role="term"]
653----
654sudo lttng enable-event --kernel --all
655----
656--
657
658. Start tracing:
659+
660--
661[role="term"]
662----
663sudo lttng start
664----
665--
666
667. Do some operation on your system for a few seconds. For example,
668 load a website, or list the files of a directory.
669. Stop tracing and destroy the tracing session:
670+
671--
672[role="term"]
673----
674sudo lttng stop
675sudo lttng destroy
676----
677--
678+
679The man:lttng-destroy(1) command does not destroy the trace data; it
680only destroys the state of the tracing session.
681
682By default, LTTng saves the traces in
683+$LTTNG_HOME/lttng-traces/__name__-__date__-__time__+,
684where +__name__+ is the tracing session name. Note that the
685env:LTTNG_HOME environment variable defaults to `$HOME` if not set.
686
687See <<viewing-and-analyzing-your-traces,View and analyze the
688recorded events>> to view the recorded events.
689
690
691[[tracing-your-own-user-application]]
692=== Trace a user application
693
694This section steps you through a simple example to trace a
695_Hello world_ program written in C.
696
697To create the traceable user application:
698
699. Create the tracepoint provider header file, which defines the
700 tracepoints and the events they can generate:
701+
702--
703[source,c]
704.path:{hello-tp.h}
705----
706#undef TRACEPOINT_PROVIDER
707#define TRACEPOINT_PROVIDER hello_world
708
709#undef TRACEPOINT_INCLUDE
710#define TRACEPOINT_INCLUDE "./hello-tp.h"
711
712#if !defined(_HELLO_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
713#define _HELLO_TP_H
714
715#include <lttng/tracepoint.h>
716
717TRACEPOINT_EVENT(
718 hello_world,
719 my_first_tracepoint,
720 TP_ARGS(
721 int, my_integer_arg,
722 char*, my_string_arg
723 ),
724 TP_FIELDS(
725 ctf_string(my_string_field, my_string_arg)
726 ctf_integer(int, my_integer_field, my_integer_arg)
727 )
728)
729
730#endif /* _HELLO_TP_H */
731
732#include <lttng/tracepoint-event.h>
733----
734--
735
736. Create the tracepoint provider package source file:
737+
738--
739[source,c]
740.path:{hello-tp.c}
741----
742#define TRACEPOINT_CREATE_PROBES
743#define TRACEPOINT_DEFINE
744
745#include "hello-tp.h"
746----
747--
748
749. Build the tracepoint provider package:
750+
751--
752[role="term"]
753----
754gcc -c -I. hello-tp.c
755----
756--
757
758. Create the _Hello World_ application source file:
759+
760--
761[source,c]
762.path:{hello.c}
763----
764#include <stdio.h>
765#include "hello-tp.h"
766
767int main(int argc, char *argv[])
768{
769 int x;
770
771 puts("Hello, World!\nPress Enter to continue...");
772
773 /*
774 * The following getchar() call is only placed here for the purpose
775 * of this demonstration, to pause the application in order for
776 * you to have time to list its tracepoints. It is not
777 * needed otherwise.
778 */
779 getchar();
780
781 /*
782 * A tracepoint() call.
783 *
784 * Arguments, as defined in hello-tp.h:
785 *
786 * 1. Tracepoint provider name (required)
787 * 2. Tracepoint name (required)
788 * 3. my_integer_arg (first user-defined argument)
789 * 4. my_string_arg (second user-defined argument)
790 *
791 * Notice the tracepoint provider and tracepoint names are
792 * NOT strings: they are in fact parts of variables that the
793 * macros in hello-tp.h create.
794 */
795 tracepoint(hello_world, my_first_tracepoint, 23, "hi there!");
796
797 for (x = 0; x < argc; ++x) {
798 tracepoint(hello_world, my_first_tracepoint, x, argv[x]);
799 }
800
801 puts("Quitting now!");
802 tracepoint(hello_world, my_first_tracepoint, x * x, "x^2");
803
804 return 0;
805}
806----
807--
808
809. Build the application:
810+
811--
812[role="term"]
813----
814gcc -c hello.c
815----
816--
817
818. Link the application with the tracepoint provider package,
819 `liblttng-ust`, and `libdl`:
820+
821--
822[role="term"]
823----
824gcc -o hello hello.o hello-tp.o -llttng-ust -ldl
825----
826--
827
828Here's the whole build process:
829
830[role="img-100"]
831.User space tracing tutorial's build steps.
832image::ust-flow.png[]
833
834To trace the user application:
835
836. Run the application with a few arguments:
837+
838--
839[role="term"]
840----
841./hello world and beyond
842----
843--
844+
845You see:
846+
847--
848----
849Hello, World!
850Press Enter to continue...
851----
852--
853
854. Start an LTTng <<lttng-sessiond,session daemon>>:
855+
856--
857[role="term"]
858----
859lttng-sessiond --daemonize
860----
861--
862+
863Note that a session daemon might already be running, for example as
864a service that the distribution's service manager started.
865
866. List the available user space tracepoints:
867+
868--
869[role="term"]
870----
871lttng list --userspace
872----
873--
874+
875You see the `hello_world:my_first_tracepoint` tracepoint listed
876under the `./hello` process.
877
878. Create a <<tracing-session,tracing session>>:
879+
880--
881[role="term"]
882----
883lttng create my-user-space-session
884----
885--
886
887. Create an <<event,event rule>> which matches the
888 `hello_world:my_first_tracepoint` event name:
889+
890--
891[role="term"]
892----
893lttng enable-event --userspace hello_world:my_first_tracepoint
894----
895--
896
897. Start tracing:
898+
899--
900[role="term"]
901----
902lttng start
903----
904--
905
906. Go back to the running `hello` application and press Enter. The
907 program executes all `tracepoint()` instrumentation points and exits.
908. Stop tracing and destroy the tracing session:
909+
910--
911[role="term"]
912----
913sudo lttng stop
914sudo lttng destroy
915----
916--
917+
918The man:lttng-destroy(1) command does not destroy the trace data; it
919only destroys the state of the tracing session.
920
921By default, LTTng saves the traces in
922+$LTTNG_HOME/lttng-traces/__name__-__date__-__time__+,
923where +__name__+ is the tracing session name. Note that the
924env:LTTNG_HOME environment variable defaults to `$HOME` if not set.
925
926See <<viewing-and-analyzing-your-traces,View and analyze the
927recorded events>> to view the recorded events.
928
929
930[[viewing-and-analyzing-your-traces]]
931=== View and analyze the recorded events
932
933Once you have completed the <<tracing-the-linux-kernel,Trace the Linux
934kernel>> and <<tracing-your-own-user-application,Trace a user
935application>> tutorials, you can inspect the recorded events.
936
937Many tools are available to read LTTng traces:
938
939* **cmd:babeltrace** is a command-line utility which converts trace
940 formats; it supports the format that LTTng produces, CTF, as well as a
941 basic text output which can be ++grep++ed. The cmd:babeltrace command
942 is part of the http://diamon.org/babeltrace[Babeltrace] project.
943* Babeltrace also includes
944 **https://www.python.org/[Python] bindings** so
945 that you can easily open and read an LTTng trace with your own script,
946 benefiting from the power of Python.
947* http://tracecompass.org/[**Trace Compass**]
948 is a graphical user interface for viewing and analyzing any type of
949 logs or traces, including LTTng's.
950* https://github.com/lttng/lttng-analyses[**LTTng analyses**] is a
951 project which includes many high-level analyses of LTTng kernel
952 traces, like scheduling statistics, interrupt frequency distribution,
953 top CPU usage, and more.
954
955NOTE: This section assumes that the traces recorded during the previous
956tutorials were saved to their default location, in the
957dir:{$LTTNG_HOME/lttng-traces} directory. Note that the env:LTTNG_HOME
958environment variable defaults to `$HOME` if not set.
959
960
961[[viewing-and-analyzing-your-traces-bt]]
962==== Use the cmd:babeltrace command-line tool
963
964The simplest way to list all the recorded events of a trace is to pass
965its path to cmd:babeltrace with no options:
966
967[role="term"]
968----
969babeltrace ~/lttng-traces/my-user-space-session*
970----
971
972cmd:babeltrace finds all traces recursively within the given path and
973prints all their events, merging them in chronological order.
974
975You can pipe the output of cmd:babeltrace into a tool like man:grep(1) for
976further filtering:
977
978[role="term"]
979----
980babeltrace ~/lttng-traces/my-kernel-session* | grep sys_
981----
982
983You can pipe the output of cmd:babeltrace into a tool like man:wc(1) to
984count the recorded events:
985
986[role="term"]
987----
988babeltrace ~/lttng-traces/my-kernel-session* | grep sys_read | wc --lines
989----
990
991
992[[viewing-and-analyzing-your-traces-bt-python]]
993==== Use the Babeltrace Python bindings
994
995The <<viewing-and-analyzing-your-traces-bt,text output of cmd:babeltrace>>
996is useful to isolate events by simple matching using man:grep(1) and
997similar utilities. However, more elaborate filters, such as keeping only
998event records with a field value falling within a specific range, are
999not trivial to write using a shell. Moreover, reductions and even the
1000most basic computations involving multiple event records are virtually
1001impossible to implement.
1002
1003Fortunately, Babeltrace ships with Python 3 bindings which makes it easy
1004to read the event records of an LTTng trace sequentially and compute the
1005desired information.
1006
1007The following script accepts an LTTng Linux kernel trace path as its
1008first argument and prints the short names of the top 5 running processes
1009on CPU 0 during the whole trace:
1010
1011[source,python]
1012.path:{top5proc.py}
1013----
1014from collections import Counter
1015import babeltrace
1016import sys
1017
1018
1019def top5proc():
1020 if len(sys.argv) != 2:
1021 msg = 'Usage: python3 {} TRACEPATH'.format(sys.argv[0])
1022 print(msg, file=sys.stderr)
1023 return False
1024
1025 # A trace collection contains one or more traces
1026 col = babeltrace.TraceCollection()
1027
1028 # Add the trace provided by the user (LTTng traces always have
1029 # the 'ctf' format)
1030 if col.add_trace(sys.argv[1], 'ctf') is None:
1031 raise RuntimeError('Cannot add trace')
1032
1033 # This counter dict contains execution times:
1034 #
1035 # task command name -> total execution time (ns)
1036 exec_times = Counter()
1037
1038 # This contains the last `sched_switch` timestamp
1039 last_ts = None
1040
1041 # Iterate on events
1042 for event in col.events:
1043 # Keep only `sched_switch` events
1044 if event.name != 'sched_switch':
1045 continue
1046
1047 # Keep only events which happened on CPU 0
1048 if event['cpu_id'] != 0:
1049 continue
1050
1051 # Event timestamp
1052 cur_ts = event.timestamp
1053
1054 if last_ts is None:
1055 # We start here
1056 last_ts = cur_ts
1057
1058 # Previous task command (short) name
1059 prev_comm = event['prev_comm']
1060
1061 # Initialize entry in our dict if not yet done
1062 if prev_comm not in exec_times:
1063 exec_times[prev_comm] = 0
1064
1065 # Compute previous command execution time
1066 diff = cur_ts - last_ts
1067
1068 # Update execution time of this command
1069 exec_times[prev_comm] += diff
1070
1071 # Update last timestamp
1072 last_ts = cur_ts
1073
1074 # Display top 5
1075 for name, ns in exec_times.most_common(5):
1076 s = ns / 1000000000
1077 print('{:20}{} s'.format(name, s))
1078
1079 return True
1080
1081
1082if __name__ == '__main__':
1083 sys.exit(0 if top5proc() else 1)
1084----
1085
1086Run this script:
1087
1088[role="term"]
1089----
1090python3 top5proc.py ~/lttng-traces/my-kernel-session*/kernel
1091----
1092
1093Output example:
1094
1095----
1096swapper/0 48.607245889 s
1097chromium 7.192738188 s
1098pavucontrol 0.709894415 s
1099Compositor 0.660867933 s
1100Xorg.bin 0.616753786 s
1101----
1102
1103Note that `swapper/0` is the "idle" process of CPU 0 on Linux; since we
1104weren't using the CPU that much when tracing, its first position in the
1105list makes sense.
1106
1107
1108[[core-concepts]]
1109== [[understanding-lttng]]Core concepts
1110
1111From a user's perspective, the LTTng system is built on a few concepts,
1112or objects, on which the <<lttng-cli,cmd:lttng command-line tool>>
1113operates by sending commands to the <<lttng-sessiond,session daemon>>.
1114Understanding how those objects relate to eachother is key in mastering
1115the toolkit.
1116
1117The core concepts are:
1118
1119* <<tracing-session,Tracing session>>
1120* <<domain,Tracing domain>>
1121* <<channel,Channel and ring buffer>>
1122* <<"event","Instrumentation point, event rule, event, and event record">>
1123
1124
1125[[tracing-session]]
1126=== Tracing session
1127
1128A _tracing session_ is a stateful dialogue between you and
1129a <<lttng-sessiond,session daemon>>. You can
1130<<creating-destroying-tracing-sessions,create a new tracing
1131session>> with the `lttng create` command.
1132
1133Anything that you do when you control LTTng tracers happens within a
1134tracing session. In particular, a tracing session:
1135
1136* Has its own name.
1137* Has its own set of trace files.
1138* Has its own state of activity (started or stopped).
1139* Has its own <<tracing-session-mode,mode>> (local, network streaming,
1140 snapshot, or live).
1141* Has its own <<channel,channels>> which have their own
1142 <<event,event rules>>.
1143
1144[role="img-100"]
1145.A _tracing session_ contains <<channel,channels>> that are members of <<domain,tracing domains>> and contain <<event,event rules>>.
1146image::concepts.png[]
1147
1148Those attributes and objects are completely isolated between different
1149tracing sessions.
1150
1151A tracing session is analogous to a cash machine session:
1152the operations you do on the banking system through the cash machine do
1153not alter the data of other users of the same system. In the case of
1154the cash machine, a session lasts as long as your bank card is inside.
1155In the case of LTTng, a tracing session lasts from the `lttng create`
1156command to the `lttng destroy` command.
1157
1158[role="img-100"]
1159.Each Unix user has its own set of tracing sessions.
1160image::many-sessions.png[]
1161
1162
1163[[tracing-session-mode]]
1164==== Tracing session mode
1165
1166LTTng can send the generated trace data to different locations. The
1167_tracing session mode_ dictates where to send it. The following modes
1168are available in LTTng{nbsp}{revision}:
1169
1170Local mode::
1171 LTTng writes the traces to the file system of the machine being traced
1172 (target system).
1173
1174Network streaming mode::
1175 LTTng sends the traces over the network to a
1176 <<lttng-relayd,relay daemon>> running on a remote system.
1177
1178Snapshot mode::
1179 LTTng does not write the traces by default. Instead, you can request
1180 LTTng to <<taking-a-snapshot,take a snapshot>>, that is, a copy of the
1181 current tracing buffers, and to write it to the target's file system
1182 or to send it over the network to a <<lttng-relayd,relay daemon>>
1183 running on a remote system.
1184
1185Live mode::
1186 This mode is similar to the network streaming mode, but a live
1187 trace viewer can connect to the distant relay daemon to
1188 <<lttng-live,view event records as LTTng generates them>> by
1189 the tracers.
1190
1191
1192[[domain]]
1193=== Tracing domain
1194
1195A _tracing domain_ is a namespace for event sources. A tracing domain
1196has its own properties and features.
1197
1198There are currently five available tracing domains:
1199
1200* Linux kernel
1201* User space
1202* `java.util.logging` (JUL)
1203* log4j
1204* Python
1205
1206You must specify a tracing domain when using some commands to avoid
1207ambiguity. For example, since all the domains support named tracepoints
1208as event sources (instrumentation points that you manually insert in the
1209source code), you need to specify a tracing domain when
1210<<enabling-disabling-events,creating an event rule>> because all the
1211tracing domains could have tracepoints with the same names.
1212
1213Some features are reserved to specific tracing domains. Dynamic function
1214entry and return instrumentation points, for example, are currently only
1215supported in the Linux kernel tracing domain, but support for other
1216tracing domains could be added in the future.
1217
1218You can create <<channel,channels>> in the Linux kernel and user space
1219tracing domains. The other tracing domains have a single default
1220channel.
1221
1222
1223[[channel]]
1224=== Channel and ring buffer
1225
1226A _channel_ is an object which is responsible for a set of ring buffers.
1227Each ring buffer is divided into multiple sub-buffers. When an LTTng
1228tracer emits an event, it can record it to one or more
1229sub-buffers. The attributes of a channel determine what to do when
1230there's no space left for a new event record because all sub-buffers
1231are full, where to send a full sub-buffer, and other behaviours.
1232
1233A channel is always associated to a <<domain,tracing domain>>. The
1234`java.util.logging` (JUL), log4j, and Python tracing domains each have
1235a default channel which you cannot configure.
1236
1237A channel also owns <<event,event rules>>. When an LTTng tracer emits
1238an event, it records it to the sub-buffers of all
1239the enabled channels with a satisfied event rule, as long as those
1240channels are part of active <<tracing-session,tracing sessions>>.
1241
1242
1243[[channel-buffering-schemes]]
1244==== Per-user vs. per-process buffering schemes
1245
1246A channel has at least one ring buffer _per CPU_. LTTng always
1247records an event to the ring buffer associated to the CPU on which it
1248occurred.
1249
1250Two _buffering schemes_ are available when you
1251<<enabling-disabling-channels,create a channel>> in the
1252user space <<domain,tracing domain>>:
1253
1254Per-user buffering::
1255 Allocate one set of ring buffers--one per CPU--shared by all the
1256 instrumented processes of each Unix user.
1257+
1258--
1259[role="img-100"]
1260.Per-user buffering scheme.
1261image::per-user-buffering.png[]
1262--
1263
1264Per-process buffering::
1265 Allocate one set of ring buffers--one per CPU--for each
1266 instrumented process.
1267+
1268--
1269[role="img-100"]
1270.Per-process buffering scheme.
1271image::per-process-buffering.png[]
1272--
1273+
1274The per-process buffering scheme tends to consume more memory than the
1275per-user option because systems generally have more instrumented
1276processes than Unix users running instrumented processes. However, the
1277per-process buffering scheme ensures that one process having a high
1278event throughput won't fill all the shared sub-buffers of the same
1279user, only its own.
1280
1281The Linux kernel tracing domain has only one available buffering scheme
1282which is to allocate a single set of ring buffers for the whole system.
1283This scheme is similar to the per-user option, but with a single, global
1284user "running" the kernel.
1285
1286
1287[[channel-overwrite-mode-vs-discard-mode]]
1288==== Overwrite vs. discard event loss modes
1289
1290When an event occurs, LTTng records it to a specific sub-buffer (yellow
1291arc in the following animation) of a specific channel's ring buffer.
1292When there's no space left in a sub-buffer, the tracer marks it as
1293consumable (red) and another, empty sub-buffer starts receiving the
1294following event records. A <<lttng-consumerd,consumer daemon>>
1295eventually consumes the marked sub-buffer (returns to white).
1296
1297[NOTE]
1298[role="docsvg-channel-subbuf-anim"]
1299====
1300{note-no-anim}
1301====
1302
1303In an ideal world, sub-buffers are consumed faster than they are filled,
1304as is the case in the previous animation. In the real world,
1305however, all sub-buffers can be full at some point, leaving no space to
1306record the following events.
1307
1308By design, LTTng is a _non-blocking_ tracer: when no empty sub-buffer is
1309available, it is acceptable to lose event records when the alternative
1310would be to cause substantial delays in the instrumented application's
1311execution. LTTng privileges performance over integrity; it aims at
1312perturbing the traced system as little as possible in order to make
1313tracing of subtle race conditions and rare interrupt cascades possible.
1314
1315When it comes to losing event records because no empty sub-buffer is
1316available, the channel's _event loss mode_ determines what to do. The
1317available event loss modes are:
1318
1319Discard mode::
1320 Drop the newest event records until a the tracer
1321 releases a sub-buffer.
1322
1323Overwrite mode::
1324 Clear the sub-buffer containing the oldest event records and start
1325 writing the newest event records there.
1326+
1327This mode is sometimes called _flight recorder mode_ because it's
1328similar to a
1329https://en.wikipedia.org/wiki/Flight_recorder[flight recorder]:
1330always keep a fixed amount of the latest data.
1331
1332Which mechanism you should choose depends on your context: prioritize
1333the newest or the oldest event records in the ring buffer?
1334
1335Beware that, in overwrite mode, the tracer abandons a whole sub-buffer
1336as soon as a there's no space left for a new event record, whereas in
1337discard mode, the tracer only discards the event record that doesn't
1338fit.
1339
1340In discard mode, LTTng increments a count of lost event records when
1341an event record is lost and saves this count to the trace. In
1342overwrite mode, LTTng keeps no information when it overwrites a
1343sub-buffer before consuming it.
1344
1345There are a few ways to decrease your probability of losing event
1346records.
1347<<channel-subbuf-size-vs-subbuf-count,Sub-buffer count and size>> shows
1348how you can fine-une the sub-buffer count and size of a channel to
1349virtually stop losing event records, though at the cost of greater
1350memory usage.
1351
1352
1353[[channel-subbuf-size-vs-subbuf-count]]
1354==== Sub-buffer count and size
1355
1356When you <<enabling-disabling-channels,create a channel>>, you can
1357set its number of sub-buffers and their size.
1358
1359Note that there is noticeable CPU overhead introduced when
1360switching sub-buffers (marking a full one as consumable and switching
1361to an empty one for the following events to be recorded). Knowing this,
1362the following list presents a few practical situations along with how
1363to configure the sub-buffer count and size for them:
1364
1365* **High event throughput**: In general, prefer bigger sub-buffers to
1366 lower the risk of losing event records.
1367+
1368Having bigger sub-buffers also ensures a lower sub-buffer switching
1369frequency.
1370+
1371The number of sub-buffers is only meaningful if you create the channel
1372in overwrite mode: in this case, if a sub-buffer overwrite happens, the
1373other sub-buffers are left unaltered.
1374
1375* **Low event throughput**: In general, prefer smaller sub-buffers
1376 since the risk of losing event records is low.
1377+
1378Because events occur less frequently, the sub-buffer switching frequency
1379should remain low and thus the tracer's overhead should not be a
1380problem.
1381
1382* **Low memory system**: If your target system has a low memory
1383 limit, prefer fewer first, then smaller sub-buffers.
1384+
1385Even if the system is limited in memory, you want to keep the
1386sub-buffers as big as possible to avoid a high sub-buffer switching
1387frequency.
1388
1389Note that LTTng uses http://diamon.org/ctf/[CTF] as its trace format,
1390which means event data is very compact. For example, the average
1391LTTng kernel event record weights about 32{nbsp}bytes. Thus, a
1392sub-buffer size of 1{nbsp}MiB is considered big.
1393
1394The previous situations highlight the major trade-off between a few big
1395sub-buffers and more, smaller sub-buffers: sub-buffer switching
1396frequency vs. how much data is lost in overwrite mode. Assuming a
1397constant event throughput and using the overwrite mode, the two
1398following configurations have the same ring buffer total size:
1399
1400[NOTE]
1401[role="docsvg-channel-subbuf-size-vs-count-anim"]
1402====
1403{note-no-anim}
1404====
1405
1406* **2 sub-buffers of 4{nbsp}MiB each**: Expect a very low sub-buffer
1407 switching frequency, but if a sub-buffer overwrite happens, half of
1408 the event records so far (4{nbsp}MiB) are definitely lost.
1409* **8 sub-buffers of 1{nbsp}MiB each**: Expect 4{nbsp}times the tracer's
1410 overhead as the previous configuration, but if a sub-buffer
1411 overwrite happens, only the eighth of event records so far are
1412 definitely lost.
1413
1414In discard mode, the sub-buffers count parameter is pointless: use two
1415sub-buffers and set their size according to the requirements of your
1416situation.
1417
1418
1419[[channel-switch-timer]]
1420==== Switch timer period
1421
1422The _switch timer period_ is an important configurable attribute of
1423a channel to ensure periodic sub-buffer flushing.
1424
1425When the _switch timer_ expires, a sub-buffer switch happens. You can
1426set the switch timer period attribute when you
1427<<enabling-disabling-channels,create a channel>> to ensure that event
1428data is consumed and committed to trace files or to a distant relay
1429daemon periodically in case of a low event throughput.
1430
1431[NOTE]
1432[role="docsvg-channel-switch-timer"]
1433====
1434{note-no-anim}
1435====
1436
1437This attribute is also convenient when you use big sub-buffers to cope
1438with a sporadic high event throughput, even if the throughput is
1439normally low.
1440
1441
1442[[channel-read-timer]]
1443==== Read timer period
1444
1445By default, the LTTng tracers use a notification mechanism to signal a
1446full sub-buffer so that a consumer daemon can consume it. When such
1447notifications must be avoided, for example in real-time applications,
1448you can use the channel's _read timer_ instead. When the read timer
1449fires, the <<lttng-consumerd,consumer daemon>> checks for full,
1450consumable sub-buffers.
1451
1452
1453[[tracefile-rotation]]
1454==== Trace file count and size
1455
1456By default, trace files can grow as large as needed. You can set the
1457maximum size of each trace file that a channel writes when you
1458<<enabling-disabling-channels,create a channel>>. When the size of
1459a trace file reaches the channel's fixed maximum size, LTTng creates
1460another file to contain the next event records. LTTng appends a file
1461count to each trace file name in this case.
1462
1463If you set the trace file size attribute when you create a channel, the
1464maximum number of trace files that LTTng creates is _unlimited_ by
1465default. To limit them, you can also set a maximum number of trace
1466files. When the number of trace files reaches the channel's fixed
1467maximum count, the oldest trace file is overwritten. This mechanism is
1468called _trace file rotation_.
1469
1470
1471[[event]]
1472=== Instrumentation point, event rule, event, and event record
1473
1474An _event rule_ is a set of conditions which must be **all** satisfied
1475for LTTng to record an occuring event.
1476
1477You set the conditions when you <<enabling-disabling-events,create
1478an event rule>>.
1479
1480You always attach an event rule to <<channel,channel>> when you create
1481it.
1482
1483When an event passes the conditions of an event rule, LTTng records it
1484in one of the attached channel's sub-buffers.
1485
1486The available conditions, as of LTTng{nbsp}{revision}, are:
1487
1488* The event rule _is enabled_.
1489* The instrumentation point's type _is{nbsp}T_.
1490* The instrumentation point's name (sometimes called _event name_)
1491 _matches{nbsp}N_, but _is not{nbsp}E_.
1492* The instrumentation point's log level _is as severe as{nbsp}L_, or
1493 _is exactly{nbsp}L_.
1494* The fields of the event's payload _satisfy_ a filter
1495 expression{nbsp}__F__.
1496
1497As you can see, all the conditions but the dynamic filter are related to
1498the event rule's status or to the instrumentation point, not to the
1499occurring events. This is why, without a filter, checking if an event
1500passes an event rule is not a dynamic task: when you create or modify an
1501event rule, all the tracers of its tracing domain enable or disable the
1502instrumentation points themselves once. This is possible because the
1503attributes of an instrumentation point (type, name, and log level) are
1504defined statically. In other words, without a dynamic filter, the tracer
1505_does not evaluate_ the arguments of an instrumentation point unless it
1506matches an enabled event rule.
1507
1508Note that, for LTTng to record an event, the <<channel,channel>> to
1509which a matching event rule is attached must also be enabled, and the
1510tracing session owning this channel must be active.
1511
1512[role="img-100"]
1513.Logical path from an instrumentation point to an event record.
1514image::event-rule.png[]
1515
1516.Event, event record, or event rule?
1517****
1518With so many similar terms, it's easy to get confused.
1519
1520An **event** is the consequence of the execution of an _instrumentation
1521point_, like a tracepoint that you manually place in some source code,
1522or a Linux kernel KProbe. An event is said to _occur_ at a specific
1523time. Different actions can be taken upon the occurance of an event,
1524like record the event's payload to a buffer.
1525
1526An **event record** is the representation of an event in a sub-buffer. A
1527tracer is responsible for capturing the payload of an event, current
1528context variables, the event's ID, and the event's timestamp. LTTng
1529can append this sub-buffer to a trace file.
1530
1531An **event rule** is a set of conditions which must all be satisfied for
1532LTTng to record an occuring event. Events still occur without
1533satisfying event rules, but LTTng does not record them.
1534****
1535
1536
1537[[plumbing]]
1538== Components of noch:{LTTng}
1539
1540The second _T_ in _LTTng_ stands for _toolkit_: it would be wrong
1541to call LTTng a simple _tool_ since it is composed of multiple
1542interacting components. This section describes those components,
1543explains their respective roles, and shows how they connect together to
1544form the LTTng ecosystem.
1545
1546The following diagram shows how the most important components of LTTng
1547interact with user applications, the Linux kernel, and you:
1548
1549[role="img-100"]
1550.Control and trace data paths between LTTng components.
1551image::plumbing.png[]
1552
1553The LTTng project incorporates:
1554
1555* **LTTng-tools**: Libraries and command-line interface to
1556 control tracing sessions.
1557** <<lttng-sessiond,Session daemon>> (man:lttng-sessiond(8)).
1558** <<lttng-consumerd,Consumer daemon>> (man:lttng-consumerd(8)).
1559** <<lttng-relayd,Relay daemon>> (man:lttng-relayd(8)).
1560** <<liblttng-ctl-lttng,Tracing control library>> (`liblttng-ctl`).
1561** <<lttng-cli,Tracing control command-line tool>> (man:lttng(1)).
1562* **LTTng-UST**: Libraries and Java/Python packages to trace user
1563 applications.
1564** <<lttng-ust,User space tracing library>> (`liblttng-ust`) and its
1565 headers to instrument and trace any native user application.
1566** <<prebuilt-ust-helpers,Preloadable user space tracing helpers>>:
1567*** `liblttng-ust-libc-wrapper`
1568*** `liblttng-ust-pthread-wrapper`
1569*** `liblttng-ust-cyg-profile`
1570*** `liblttng-ust-cyg-profile-fast`
1571*** `liblttng-ust-dl`
1572** User space tracepoint provider source files generator command-line
1573 tool (man:lttng-gen-tp(1)).
1574** <<lttng-ust-agents,LTTng-UST Java agent>> to instrument and trace
1575 Java applications using `java.util.logging` or
1576 Apache log4j 1.2 logging.
1577** <<lttng-ust-agents,LTTng-UST Python agent>> to instrument
1578 Python applications using the standard `logging` package.
1579* **LTTng-modules**: <<lttng-modules,Linux kernel modules>> to trace
1580 the kernel.
1581** LTTng kernel tracer module.
1582** Tracing ring buffer kernel modules.
1583** Probe kernel modules.
1584** LTTng logger kernel module.
1585
1586
1587[[lttng-cli]]
1588=== Tracing control command-line interface
1589
1590[role="img-100"]
1591.The tracing control command-line interface.
1592image::plumbing-lttng-cli.png[]
1593
1594The _man:lttng(1) command-line tool_ is the standard user interface to
1595control LTTng <<tracing-session,tracing sessions>>. The cmd:lttng tool
1596is part of LTTng-tools.
1597
1598The cmd:lttng tool is linked with
1599<<liblttng-ctl-lttng,`liblttng-ctl`>> to communicate with
1600one or more <<lttng-sessiond,session daemons>> behind the scenes.
1601
1602The cmd:lttng tool has a Git-like interface:
1603
1604[role="term"]
1605----
1606lttng <general options> <command> <command options>
1607----
1608
1609The <<controlling-tracing,Tracing control>> section explores the
1610available features of LTTng using the cmd:lttng tool.
1611
1612
1613[[liblttng-ctl-lttng]]
1614=== Tracing control library
1615
1616[role="img-100"]
1617.The tracing control library.
1618image::plumbing-liblttng-ctl.png[]
1619
1620The _LTTng control library_, `liblttng-ctl`, is used to communicate
1621with a <<lttng-sessiond,session daemon>> using a C API that hides the
1622underlying protocol's details. `liblttng-ctl` is part of LTTng-tools.
1623
1624The <<lttng-cli,cmd:lttng command-line tool>>
1625is linked with `liblttng-ctl`.
1626
1627You can use `liblttng-ctl` in C or $$C++$$ source code by including its
1628"master" header:
1629
1630[source,c]
1631----
1632#include <lttng/lttng.h>
1633----
1634
1635Some objects are referenced by name (C string), such as tracing
1636sessions, but most of them require to create a handle first using
1637`lttng_create_handle()`.
1638
1639The best available developer documentation for `liblttng-ctl` is, as of
1640LTTng{nbsp}{revision}, its installed header files. Every function and
1641structure is thoroughly documented.
1642
1643
1644[[lttng-ust]]
1645=== User space tracing library
1646
1647[role="img-100"]
1648.The user space tracing library.
1649image::plumbing-liblttng-ust.png[]
1650
1651The _user space tracing library_, `liblttng-ust` (see man:lttng-ust(3)),
1652is the LTTng user space tracer. It receives commands from a
1653<<lttng-sessiond,session daemon>>, for example to
1654enable and disable specific instrumentation points, and writes event
1655records to ring buffers shared with a
1656<<lttng-consumerd,consumer daemon>>.
1657`liblttng-ust` is part of LTTng-UST.
1658
1659Public C header files are installed beside `liblttng-ust` to
1660instrument any <<c-application,C or $$C++$$ application>>.
1661
1662<<lttng-ust-agents,LTTng-UST agents>>, which are regular Java and Python
1663packages, use their own library providing tracepoints which is
1664linked with `liblttng-ust`.
1665
1666An application or library does not have to initialize `liblttng-ust`
1667manually: its constructor does the necessary tasks to properly register
1668to a session daemon. The initialization phase also enables the
1669instrumentation points matching the <<event,event rules>> that you
1670already created.
1671
1672
1673[[lttng-ust-agents]]
1674=== User space tracing agents
1675
1676[role="img-100"]
1677.The user space tracing agents.
1678image::plumbing-lttng-ust-agents.png[]
1679
1680The _LTTng-UST Java and Python agents_ are regular Java and Python
1681packages which add LTTng tracing capabilities to the
1682native logging frameworks. The LTTng-UST agents are part of LTTng-UST.
1683
1684In the case of Java, the
1685https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html[`java.util.logging`
1686core logging facilities] and
1687https://logging.apache.org/log4j/1.2/[Apache log4j 1.2] are supported.
1688Note that Apache Log4{nbsp}2 is not supported.
1689
1690In the case of Python, the standard
1691https://docs.python.org/3/library/logging.html[`logging`] package
1692is supported. Both Python 2 and Python 3 modules can import the
1693LTTng-UST Python agent package.
1694
1695The applications using the LTTng-UST agents are in the
1696`java.util.logging` (JUL),
1697log4j, and Python <<domain,tracing domains>>.
1698
1699Both agents use the same mechanism to trace the log statements. When an
1700agent is initialized, it creates a log handler that attaches to the root
1701logger. The agent also registers to a <<lttng-sessiond,session daemon>>.
1702When the application executes a log statement, it is passed to the
1703agent's log handler by the root logger. The agent's log handler calls a
1704native function in a tracepoint provider package shared library linked
1705with <<lttng-ust,`liblttng-ust`>>, passing the formatted log message and
1706other fields, like its logger name and its log level. This native
1707function contains a user space instrumentation point, hence tracing the
1708log statement.
1709
1710The log level condition of an
1711<<event,event rule>> is considered when tracing
1712a Java or a Python application, and it's compatible with the standard
1713JUL, log4j, and Python log levels.
1714
1715
1716[[lttng-modules]]
1717=== LTTng kernel modules
1718
1719[role="img-100"]
1720.The LTTng kernel modules.
1721image::plumbing-lttng-modules.png[]
1722
1723The _LTTng kernel modules_ are a set of Linux kernel modules
1724which implement the kernel tracer of the LTTng project. The LTTng
1725kernel modules are part of LTTng-modules.
1726
1727The LTTng kernel modules include:
1728
1729* A set of _probe_ modules.
1730+
1731Each module attaches to a specific subsystem
1732of the Linux kernel using its tracepoint instrument points. There are
1733also modules to attach to the entry and return points of the Linux
1734system call functions.
1735
1736* _Ring buffer_ modules.
1737+
1738A ring buffer implementation is provided as kernel modules. The LTTng
1739kernel tracer writes to the ring buffer; a
1740<<lttng-consumerd,consumer daemon>> reads from the ring buffer.
1741
1742* The _LTTng kernel tracer_ module.
1743* The _LTTng logger_ module.
1744+
1745The LTTng logger module implements the special path:{/proc/lttng-logger}
1746file so that any executable can generate LTTng events by opening and
1747writing to this file.
1748+
1749See <<proc-lttng-logger-abi,LTTng logger>>.
1750
1751Generally, you do not have to load the LTTng kernel modules manually
1752(using man:modprobe(8), for example): a root <<lttng-sessiond,session
1753daemon>> loads the necessary modules when starting. If you have extra
1754probe modules, you can specify to load them to the session daemon on
1755the command line.
1756
1757The LTTng kernel modules are installed in
1758+/usr/lib/modules/__release__/extra+ by default, where +__release__+ is
1759the kernel release (see `uname --kernel-release`).
1760
1761
1762[[lttng-sessiond]]
1763=== Session daemon
1764
1765[role="img-100"]
1766.The session daemon.
1767image::plumbing-sessiond.png[]
1768
1769The _session daemon_, man:lttng-sessiond(8), is a daemon responsible for
1770managing tracing sessions and for controlling the various components of
1771LTTng. The session daemon is part of LTTng-tools.
1772
1773The session daemon sends control requests to and receives control
1774responses from:
1775
1776* The <<lttng-ust,user space tracing library>>.
1777+
1778Any instance of the user space tracing library first registers to
1779a session daemon. Then, the session daemon can send requests to
1780this instance, such as:
1781+
1782--
1783** Get the list of tracepoints.
1784** Share an <<event,event rule>> so that the user space tracing library
1785 can enable or disable tracepoints. Amongst the possible conditions
1786 of an event rule is a filter expression which `liblttng-ust` evalutes
1787 when an event occurs.
1788** Share <<channel,channel>> attributes and ring buffer locations.
1789--
1790+
1791The session daemon and the user space tracing library use a Unix
1792domain socket for their communication.
1793
1794* The <<lttng-ust-agents,user space tracing agents>>.
1795+
1796Any instance of a user space tracing agent first registers to
1797a session daemon. Then, the session daemon can send requests to
1798this instance, such as:
1799+
1800--
1801** Get the list of loggers.
1802** Enable or disable a specific logger.
1803--
1804+
1805The session daemon and the user space tracing agent use a TCP connection
1806for their communication.
1807
1808* The <<lttng-modules,LTTng kernel tracer>>.
1809* The <<lttng-consumerd,consumer daemon>>.
1810+
1811The session daemon sends requests to the consumer daemon to instruct
1812it where to send the trace data streams, amongst other information.
1813
1814* The <<lttng-relayd,relay daemon>>.
1815
1816The session daemon receives commands from the
1817<<liblttng-ctl-lttng,tracing control library>>.
1818
1819The root session daemon loads the appropriate
1820<<lttng-modules,LTTng kernel modules>> on startup. It also spawns
1821a <<lttng-consumerd,consumer daemon>> as soon as you create
1822an <<event,event rule>>.
1823
1824The session daemon does not send and receive trace data: this is the
1825role of the <<lttng-consumerd,consumer daemon>> and
1826<<lttng-relayd,relay daemon>>. It does, however, generate the
1827http://diamon.org/ctf/[CTF] metadata stream.
1828
1829Each Unix user can have its own session daemon instance. The
1830tracing sessions managed by different session daemons are completely
1831independent.
1832
1833The root user's session daemon is the only one which is
1834allowed to control the LTTng kernel tracer, and its spawned consumer
1835daemon is the only one which is allowed to consume trace data from the
1836LTTng kernel tracer. Note, however, that any Unix user which is a member
1837of the <<tracing-group,tracing group>> is allowed
1838to create <<channel,channels>> in the
1839Linux kernel <<domain,tracing domain>>, and thus to trace the Linux
1840kernel.
1841
1842The <<lttng-cli,cmd:lttng command-line tool>> automatically starts a
1843session daemon when using its `create` command if none is currently
1844running. You can also start the session daemon manually.
1845
1846
1847[[lttng-consumerd]]
1848=== Consumer daemon
1849
1850[role="img-100"]
1851.The consumer daemon.
1852image::plumbing-consumerd.png[]
1853
1854The _consumer daemon_, man:lttng-consumerd(8), is a daemon which shares
1855ring buffers with user applications or with the LTTng kernel modules to
1856collect trace data and send it to some location (on disk or to a
1857<<lttng-relayd,relay daemon>> over the network). The consumer daemon
1858is part of LTTng-tools.
1859
1860You do not start a consumer daemon manually: a consumer daemon is always
1861spawned by a <<lttng-sessiond,session daemon>> as soon as you create an
1862<<event,event rule>>, that is, before you start tracing. When you kill
1863its owner session daemon, the consumer daemon also exits because it is
1864the session daemon's child process. Command-line options of
1865man:lttng-sessiond(8) target the consumer daemon process.
1866
1867There are up to two running consumer daemons per Unix user, whereas only
1868one session daemon can run per user. This is because each process can be
1869either 32-bit or 64-bit: if the target system runs a mixture of 32-bit
1870and 64-bit processes, it is more efficient to have separate
1871corresponding 32-bit and 64-bit consumer daemons. The root user is an
1872exception: it can have up to _three_ running consumer daemons: 32-bit
1873and 64-bit instances for its user applications, and one more
1874reserved for collecting kernel trace data.
1875
1876
1877[[lttng-relayd]]
1878=== Relay daemon
1879
1880[role="img-100"]
1881.The relay daemon.
1882image::plumbing-relayd.png[]
1883
1884The _relay daemon_, man:lttng-relayd(8), is a daemon acting as a bridge
1885between remote session and consumer daemons, local trace files, and a
1886remote live trace viewer. The relay daemon is part of LTTng-tools.
1887
1888The main purpose of the relay daemon is to implement a receiver of
1889<<sending-trace-data-over-the-network,trace data over the network>>.
1890This is useful when the target system does not have much file system
1891space to record trace files locally.
1892
1893The relay daemon is also a server to which a
1894<<lttng-live,live trace viewer>> can
1895connect. The live trace viewer sends requests to the relay daemon to
1896receive trace data as the target system emits events. The
1897communication protocol is named _LTTng live_; it is used over TCP
1898connections.
1899
1900Note that you can start the relay daemon on the target system directly.
1901This is the setup of choice when the use case is to view events as
1902the target system emits them without the need of a remote system.
1903
1904
1905[[instrumenting]]
1906== [[using-lttng]]Instrumentation
1907
1908There are many examples of tracing and monitoring in our everyday life:
1909
1910* You have access to real-time and historical weather reports and
1911 forecasts thanks to weather stations installed around the country.
1912* You know your heart is safe thanks to an electrocardiogram.
1913* You make sure not to drive your car too fast and to have enough fuel
1914 to reach your destination thanks to gauges visible on your dashboard.
1915
1916All the previous examples have something in common: they rely on
1917**instruments**. Without the electrodes attached to the surface of your
1918body's skin, cardiac monitoring is futile.
1919
1920LTTng, as a tracer, is no different from those real life examples. If
1921you're about to trace a software system or, in other words, record its
1922history of execution, you better have **instrumentation points** in the
1923subject you're tracing, that is, the actual software.
1924
1925Various ways were developed to instrument a piece of software for LTTng
1926tracing. The most straightforward one is to manually place
1927instrumentation points, called _tracepoints_, in the software's source
1928code. It is also possible to add instrumentation points dynamically in
1929the Linux kernel <<domain,tracing domain>>.
1930
1931If you're only interested in tracing the Linux kernel, your
1932instrumentation needs are probably already covered by LTTng's built-in
1933<<lttng-modules,Linux kernel tracepoints>>. You may also wish to trace a
1934user application which is already instrumented for LTTng tracing.
1935In such cases, you can skip this whole section and read the topics of
1936the <<controlling-tracing,Tracing control>> section.
1937
1938Many methods are available to instrument a piece of software for LTTng
1939tracing. They are:
1940
1941* <<c-application,User space instrumentation for C and $$C++$$
1942 applications>>.
1943* <<prebuilt-ust-helpers,Prebuilt user space tracing helpers>>.
1944* <<java-application,User space Java agent>>.
1945* <<python-application,User space Python agent>>.
1946* <<proc-lttng-logger-abi,LTTng logger>>.
1947* <<instrumenting-linux-kernel,LTTng kernel tracepoints>>.
1948
1949
1950[[c-application]]
1951=== [[cxx-application]]User space instrumentation for C and $$C++$$ applications
1952
1953The procedure to instrument a C or $$C++$$ user application with
1954the <<lttng-ust,LTTng user space tracing library>>, `liblttng-ust`, is:
1955
1956. <<tracepoint-provider,Create the source files of a tracepoint provider
1957 package>>.
1958. <<probing-the-application-source-code,Add tracepoints to
1959 the application's source code>>.
1960. <<building-tracepoint-providers-and-user-application,Build and link
1961 a tracepoint provider package and the user application>>.
1962
1963If you need quick, man:printf(3)-like instrumentation, you can skip
1964those steps and use <<tracef,`tracef()`>> or <<tracelog,`tracelog()`>>
1965instead.
1966
1967IMPORTANT: You need to <<installing-lttng,install>> LTTng-UST to
1968instrument a user application with `liblttng-ust`.
1969
1970
1971[[tracepoint-provider]]
1972==== Create the source files of a tracepoint provider package
1973
1974A _tracepoint provider_ is a set of compiled functions which provide
1975**tracepoints** to an application, the type of instrumentation point
1976supported by LTTng-UST. Those functions can emit events with
1977user-defined fields and serialize those events as event records to one
1978or more LTTng-UST <<channel,channel>> sub-buffers. The `tracepoint()`
1979macro, which you <<probing-the-application-source-code,insert in a user
1980application's source code>>, calls those functions.
1981
1982A _tracepoint provider package_ is an object file (`.o`) or a shared
1983library (`.so`) which contains one or more tracepoint providers.
1984Its source files are:
1985
1986* One or more <<tpp-header,tracepoint provider header>> (`.h`).
1987* A <<tpp-source,tracepoint provider package source>> (`.c`).
1988
1989A tracepoint provider package is dynamically linked with `liblttng-ust`,
1990the LTTng user space tracer, at run time.
1991
1992[role="img-100"]
1993.User application linked with `liblttng-ust` and containing a tracepoint provider.
1994image::ust-app.png[]
1995
1996NOTE: If you need quick, man:printf(3)-like instrumentation, you can
1997skip creating and using a tracepoint provider and use
1998<<tracef,`tracef()`>> or <<tracelog,`tracelog()`>> instead.
1999
2000
2001[[tpp-header]]
2002===== Create a tracepoint provider header file template
2003
2004A _tracepoint provider header file_ contains the tracepoint
2005definitions of a tracepoint provider.
2006
2007To create a tracepoint provider header file:
2008
2009. Start from this template:
2010+
2011--
2012[source,c]
2013.Tracepoint provider header file template (`.h` file extension).
2014----
2015#undef TRACEPOINT_PROVIDER
2016#define TRACEPOINT_PROVIDER provider_name
2017
2018#undef TRACEPOINT_INCLUDE
2019#define TRACEPOINT_INCLUDE "./tp.h"
2020
2021#if !defined(_TP_H) || defined(TRACEPOINT_HEADER_MULTI_READ)
2022#define _TP_H
2023
2024#include <lttng/tracepoint.h>
2025
2026/*
2027 * Use TRACEPOINT_EVENT(), TRACEPOINT_EVENT_CLASS(),
2028 * TRACEPOINT_EVENT_INSTANCE(), and TRACEPOINT_LOGLEVEL() here.
2029 */
2030
2031#endif /* _TP_H */
2032
2033#include <lttng/tracepoint-event.h>
2034----
2035--
2036
2037. Replace:
2038+
2039* `provider_name` with the name of your tracepoint provider.
2040* `"tp.h"` with the name of your tracepoint provider header file.
2041
2042. Below the `#include <lttng/tracepoint.h>` line, put your
2043 <<defining-tracepoints,tracepoint definitions>>.
2044
2045Your tracepoint provider name must be unique amongst all the possible
2046tracepoint provider names used on the same target system. We
2047suggest to include the name of your project or company in the name,
2048for example, `org_lttng_my_project_tpp`.
2049
2050TIP: [[lttng-gen-tp]]You can use the man:lttng-gen-tp(1) tool to create
2051this boilerplate for you. When using cmd:lttng-gen-tp, all you need to
2052write are the <<defining-tracepoints,tracepoint definitions>>.
2053
2054
2055[[defining-tracepoints]]
2056===== Create a tracepoint definition
2057
2058A _tracepoint definition_ defines, for a given tracepoint:
2059
2060* Its **input arguments**. They are the macro parameters that the
2061 `tracepoint()` macro accepts for this particular tracepoint
2062 in the user application's source code.
2063* Its **output event fields**. They are the sources of event fields
2064 that form the payload of any event that the execution of the
2065 `tracepoint()` macro emits for this particular tracepoint.
2066
2067You can create a tracepoint definition by using the
2068`TRACEPOINT_EVENT()` macro below the `#include <lttng/tracepoint.h>`
2069line in the
2070<<tpp-header,tracepoint provider header file template>>.
2071
2072The syntax of the `TRACEPOINT_EVENT()` macro is:
2073
2074[source,c]
2075.`TRACEPOINT_EVENT()` macro syntax.
2076----
2077TRACEPOINT_EVENT(
2078 /* Tracepoint provider name */
2079 provider_name,
2080
2081 /* Tracepoint name */
2082 tracepoint_name,
2083
2084 /* Input arguments */
2085 TP_ARGS(
2086 arguments
2087 ),
2088
2089 /* Output event fields */
2090 TP_FIELDS(
2091 fields
2092 )
2093)
2094----
2095
2096Replace:
2097
2098* `provider_name` with your tracepoint provider name.
2099* `tracepoint_name` with your tracepoint name.
2100* `arguments` with the <<tpp-def-input-args,input arguments>>.
2101* `fields` with the <<tpp-def-output-fields,output event field>>
2102 definitions.
2103
2104This tracepoint emits events named `provider_name:tracepoint_name`.
2105
2106[IMPORTANT]
2107.Event name's length limitation
2108====
2109The concatenation of the tracepoint provider name and the
2110tracepoint name must not exceed **254 characters**. If it does, the
2111instrumented application compiles and runs, but LTTng throws multiple
2112warnings and you could experience serious issues.
2113====
2114
2115[[tpp-def-input-args]]The syntax of the `TP_ARGS()` macro is:
2116
2117[source,c]
2118.`TP_ARGS()` macro syntax.
2119----
2120TP_ARGS(
2121 type, arg_name
2122)
2123----
2124
2125Replace:
2126
2127* `type` with the C type of the argument.
2128* `arg_name` with the argument name.
2129
2130You can repeat `type` and `arg_name` up to 10 times to have
2131more than one argument.
2132
2133.`TP_ARGS()` usage with three arguments.
2134====
2135[source,c]
2136----
2137TP_ARGS(
2138 int, count,
2139 float, ratio,
2140 const char*, query
2141)
2142----
2143====
2144
2145The `TP_ARGS()` and `TP_ARGS(void)` forms are valid to create a
2146tracepoint definition with no input arguments.
2147
2148[[tpp-def-output-fields]]The `TP_FIELDS()` macro contains a list of
2149`ctf_*()` macros. Each `ctf_*()` macro defines one event field. See
2150man:lttng-ust(3) for a complete description of the available `ctf_*()`
2151macros. A `ctf_*()` macro specifies the type, size, and byte order of
2152one event field.
2153
2154Each `ctf_*()` macro takes an _argument expression_ parameter. This is a
2155C expression that the tracer evalutes at the `tracepoint()` macro site
2156in the application's source code. This expression provides a field's
2157source of data. The argument expression can include input argument names
2158listed in the `TP_ARGS()` macro.
2159
2160Each `ctf_*()` macro also takes a _field name_ parameter. Field names
2161must be unique within a given tracepoint definition.
2162
2163Here's a complete tracepoint definition example:
2164
2165.Tracepoint definition.
2166====
2167The following tracepoint definition defines a tracepoint which takes
2168three input arguments and has four output event fields.
2169
2170[source,c]
2171----
2172#include "my-custom-structure.h"
2173
2174TRACEPOINT_EVENT(
2175 my_provider,
2176 my_tracepoint,
2177 TP_ARGS(
2178 const struct my_custom_structure*, my_custom_structure,
2179 float, ratio,
2180 const char*, query
2181 ),
2182 TP_FIELDS(
2183 ctf_string(query_field, query)
2184 ctf_float(double, ratio_field, ratio)
2185 ctf_integer(int, recv_size, my_custom_structure->recv_size)
2186 ctf_integer(int, send_size, my_custom_structure->send_size)
2187 )
2188)
2189----
2190
2191You can refer to this tracepoint definition with the `tracepoint()`
2192macro in your application's source code like this:
2193
2194[source,c]
2195----
2196tracepoint(my_provider, my_tracepoint,
2197 my_structure, some_ratio, the_query);
2198----
2199====
2200
2201NOTE: The LTTng tracer only evaluates tracepoint arguments at run time
2202if they satisfy an enabled <<event,event rule>>.
2203
2204
2205[[using-tracepoint-classes]]
2206===== Use a tracepoint class
2207
2208A _tracepoint class_ is a class of tracepoints which share the same
2209output event field definitions. A _tracepoint instance_ is one
2210instance of such a defined tracepoint class, with its own tracepoint
2211name.
2212
2213The <<defining-tracepoints,`TRACEPOINT_EVENT()` macro>> is actually a
2214shorthand which defines both a tracepoint class and a tracepoint
2215instance at the same time.
2216
2217When you build a tracepoint provider package, the C or $$C++$$ compiler
2218creates one serialization function for each **tracepoint class**. A
2219serialization function is responsible for serializing the event fields
2220of a tracepoint to a sub-buffer when tracing.
2221
2222For various performance reasons, when your situation requires multiple
2223tracepoint definitions with different names, but with the same event
2224fields, we recommend that you manually create a tracepoint class
2225and instantiate as many tracepoint instances as needed. One positive
2226effect of such a design, amongst other advantages, is that all
2227tracepoint instances of the same tracepoint class reuse the same
2228serialization function, thus reducing
2229https://en.wikipedia.org/wiki/Cache_pollution[cache pollution].
2230
2231.Use a tracepoint class and tracepoint instances.
2232====
2233Consider the following three tracepoint definitions:
2234
2235[source,c]
2236----
2237TRACEPOINT_EVENT(
2238 my_app,
2239 get_account,
2240 TP_ARGS(
2241 int, userid,
2242 size_t, len
2243 ),
2244 TP_FIELDS(
2245 ctf_integer(int, userid, userid)
2246 ctf_integer(size_t, len, len)
2247 )
2248)
2249
2250TRACEPOINT_EVENT(
2251 my_app,
2252 get_settings,
2253 TP_ARGS(
2254 int, userid,
2255 size_t, len
2256 ),
2257 TP_FIELDS(
2258 ctf_integer(int, userid, userid)
2259 ctf_integer(size_t, len, len)
2260 )
2261)
2262
2263TRACEPOINT_EVENT(
2264 my_app,
2265 get_transaction,
2266 TP_ARGS(
2267 int, userid,
2268 size_t, len
2269 ),
2270 TP_FIELDS(
2271 ctf_integer(int, userid, userid)
2272 ctf_integer(size_t, len, len)
2273 )
2274)
2275----
2276
2277In this case, we create three tracepoint classes, with one implicit
2278tracepoint instance for each of them: `get_account`, `get_settings`, and
2279`get_transaction`. However, they all share the same event field names
2280and types. Hence three identical, yet independent serialization
2281functions are created when you build the tracepoint provider package.
2282
2283A better design choice is to define a single tracepoint class and three
2284tracepoint instances:
2285
2286[source,c]
2287----
2288/* The tracepoint class */
2289TRACEPOINT_EVENT_CLASS(
2290 /* Tracepoint provider name */
2291 my_app,
2292
2293 /* Tracepoint class name */
2294 my_class,
2295
2296 /* Input arguments */
2297 TP_ARGS(
2298 int, userid,
2299 size_t, len
2300 ),
2301
2302 /* Output event fields */
2303 TP_FIELDS(
2304 ctf_integer(int, userid, userid)
2305 ctf_integer(size_t, len, len)
2306 )
2307)
2308
2309/* The tracepoint instances */
2310TRACEPOINT_EVENT_INSTANCE(
2311 /* Tracepoint provider name */
2312 my_app,
2313
2314 /* Tracepoint class name */
2315 my_class,
2316
2317 /* Tracepoint name */
2318 get_account,
2319
2320 /* Input arguments */
2321 TP_ARGS(
2322 int, userid,
2323 size_t, len
2324 )
2325)
2326TRACEPOINT_EVENT_INSTANCE(
2327 my_app,
2328 my_class,
2329 get_settings,
2330 TP_ARGS(
2331 int, userid,
2332 size_t, len
2333 )
2334)
2335TRACEPOINT_EVENT_INSTANCE(
2336 my_app,
2337 my_class,
2338 get_transaction,
2339 TP_ARGS(
2340 int, userid,
2341 size_t, len
2342 )
2343)
2344----
2345====
2346
2347
2348[[assigning-log-levels]]
2349===== Assign a log level to a tracepoint definition
2350
2351You can assign an optional _log level_ to a
2352<<defining-tracepoints,tracepoint definition>>.
2353
2354Assigning different levels of severity to tracepoint definitions can
2355be useful: when you <<enabling-disabling-events,create an event rule>>,
2356you can target tracepoints having a log level as severe as a specific
2357value.
2358
2359The concept of LTTng-UST log levels is similar to the levels found
2360in typical logging frameworks:
2361
2362* In a logging framework, the log level is given by the function
2363 or method name you use at the log statement site: `debug()`,
2364 `info()`, `warn()`, `error()`, and so on.
2365* In LTTng-UST, you statically assign the log level to a tracepoint
2366 definition; any `tracepoint()` macro invocation which refers to
2367 this definition has this log level.
2368
2369You can assign a log level to a tracepoint definition with the
2370`TRACEPOINT_LOGLEVEL()` macro. You must use this macro _after_ the
2371<<defining-tracepoints,`TRACEPOINT_EVENT()`>> or
2372<<using-tracepoint-classes,`TRACEPOINT_INSTANCE()`>> macro for a given
2373tracepoint.
2374
2375The syntax of the `TRACEPOINT_LOGLEVEL()` macro is:
2376
2377[source,c]
2378.`TRACEPOINT_LOGLEVEL()` macro syntax.
2379----
2380TRACEPOINT_LOGLEVEL(provider_name, tracepoint_name, log_level)
2381----
2382
2383Replace:
2384
2385* `provider_name` with the tracepoint provider name.
2386* `tracepoint_name` with the tracepoint name.
2387* `log_level` with the log level to assign to the tracepoint
2388 definition named `tracepoint_name` in the `provider_name`
2389 tracepoint provider.
2390+
2391See man:lttng-ust(3) for a list of available log level names.
2392
2393.Assign the `TRACE_DEBUG_UNIT` log level to a tracepoint definition.
2394====
2395[source,c]
2396----
2397/* Tracepoint definition */
2398TRACEPOINT_EVENT(
2399 my_app,
2400 get_transaction,
2401 TP_ARGS(
2402 int, userid,
2403 size_t, len
2404 ),
2405 TP_FIELDS(
2406 ctf_integer(int, userid, userid)
2407 ctf_integer(size_t, len, len)
2408 )
2409)
2410
2411/* Log level assignment */
2412TRACEPOINT_LOGLEVEL(my_app, get_transaction, TRACE_DEBUG_UNIT)
2413----
2414====
2415
2416
2417[[tpp-source]]
2418===== Create a tracepoint provider package source file
2419
2420A _tracepoint provider package source file_ is a C source file which
2421includes a <<tpp-header,tracepoint provider header file>> to expand its
2422macros into event serialization and other functions.
2423
2424You can always use the following tracepoint provider package source
2425file template:
2426
2427[source,c]
2428.Tracepoint provider package source file template.
2429----
2430#define TRACEPOINT_CREATE_PROBES
2431
2432#include "tp.h"
2433----
2434
2435Replace `tp.h` with the name of your <<tpp-header,tracepoint provider
2436header file>> name. You may also include more than one tracepoint
2437provider header file here to create a tracepoint provider package
2438holding more than one tracepoint providers.
2439
2440
2441[[probing-the-application-source-code]]
2442==== Add tracepoints to an application's source code
2443
2444Once you <<tpp-header,create a tracepoint provider header file>>, you
2445can use the `tracepoint()` macro in your application's
2446source code to insert the tracepoints that this header
2447<<defining-tracepoints,defines>>.
2448
2449The `tracepoint()` macro takes at least two parameters: the tracepoint
2450provider name and the tracepoint name. The corresponding tracepoint
2451definition defines the other parameters.
2452
2453.`tracepoint()` usage.
2454====
2455The following <<defining-tracepoints,tracepoint definition>> defines a
2456tracepoint which takes two input arguments and has two output event
2457fields.
2458
2459[source,c]
2460.Tracepoint provider header file.
2461----
2462#include "my-custom-structure.h"
2463
2464TRACEPOINT_EVENT(
2465 my_provider,
2466 my_tracepoint,
2467 TP_ARGS(
2468 int, argc,
2469 const char*, cmd_name
2470 ),
2471 TP_FIELDS(
2472 ctf_string(cmd_name, cmd_name)
2473 ctf_integer(int, number_of_args, argc)
2474 )
2475)
2476----
2477
2478You can refer to this tracepoint definition with the `tracepoint()`
2479macro in your application's source code like this:
2480
2481[source,c]
2482.Application's source file.
2483----
2484#include "tp.h"
2485
2486int main(int argc, char* argv[])
2487{
2488 tracepoint(my_provider, my_tracepoint, argc, argv[0]);
2489
2490 return 0;
2491}
2492----
2493
2494Note how the application's source code includes
2495the tracepoint provider header file containing the tracepoint
2496definitions to use, path:{tp.h}.
2497====
2498
2499.`tracepoint()` usage with a complex tracepoint definition.
2500====
2501Consider this complex tracepoint definition, where multiple event
2502fields refer to the same input arguments in their argument expression
2503parameter:
2504
2505[source,c]
2506.Tracepoint provider header file.
2507----
2508/* For `struct stat` */
2509#include <sys/types.h>
2510#include <sys/stat.h>
2511#include <unistd.h>
2512
2513TRACEPOINT_EVENT(
2514 my_provider,
2515 my_tracepoint,
2516 TP_ARGS(
2517 int, my_int_arg,
2518 char*, my_str_arg,
2519 struct stat*, st
2520 ),
2521 TP_FIELDS(
2522 ctf_integer(int, my_constant_field, 23 + 17)
2523 ctf_integer(int, my_int_arg_field, my_int_arg)
2524 ctf_integer(int, my_int_arg_field2, my_int_arg * my_int_arg)
2525 ctf_integer(int, sum4_field, my_str_arg[0] + my_str_arg[1] +
2526 my_str_arg[2] + my_str_arg[3])
2527 ctf_string(my_str_arg_field, my_str_arg)
2528 ctf_integer_hex(off_t, size_field, st->st_size)
2529 ctf_float(double, size_dbl_field, (double) st->st_size)
2530 ctf_sequence_text(char, half_my_str_arg_field, my_str_arg,
2531 size_t, strlen(my_str_arg) / 2)
2532 )
2533)
2534----
2535
2536You can refer to this tracepoint definition with the `tracepoint()`
2537macro in your application's source code like this:
2538
2539[source,c]
2540.Application's source file.
2541----
2542#define TRACEPOINT_DEFINE
2543#include "tp.h"
2544
2545int main(void)
2546{
2547 struct stat s;
2548
2549 stat("/etc/fstab", &s);
2550 tracepoint(my_provider, my_tracepoint, 23, "Hello, World!", &s);
2551
2552 return 0;
2553}
2554----
2555
2556If you look at the event record that LTTng writes when tracing this
2557program, assuming the file size of path:{/etc/fstab} is 301{nbsp}bytes,
2558it should look like this:
2559
2560.Event record fields
2561|====
2562|Field's name |Field's value
2563|`my_constant_field` |40
2564|`my_int_arg_field` |23
2565|`my_int_arg_field2` |529
2566|`sum4_field` |389
2567|`my_str_arg_field` |`Hello, World!`
2568|`size_field` |0x12d
2569|`size_dbl_field` |301.0
2570|`half_my_str_arg_field` |`Hello,`
2571|====
2572====
2573
2574Sometimes, the arguments you pass to `tracepoint()` are expensive to
2575compute--they use the call stack, for example. To avoid this
2576computation when the tracepoint is disabled, you can use the
2577`tracepoint_enabled()` and `do_tracepoint()` macros.
2578
2579The syntax of the `tracepoint_enabled()` and `do_tracepoint()` macros
2580is:
2581
2582[source,c]
2583.`tracepoint_enabled()` and `do_tracepoint()` macros syntax.
2584----
2585tracepoint_enabled(provider_name, tracepoint_name)
2586do_tracepoint(provider_name, tracepoint_name, ...)
2587----
2588
2589Replace:
2590
2591* `provider_name` with the tracepoint provider name.
2592* `tracepoint_name` with the tracepoint name.
2593
2594`tracepoint_enabled()` returns a non-zero value if the tracepoint named
2595`tracepoint_name` from the provider named `provider_name` is enabled
2596**at run time**.
2597
2598`do_tracepoint()` is like `tracepoint()`, except that it doesn't check
2599if the tracepoint is enabled. Using `tracepoint()` with
2600`tracepoint_enabled()` is dangerous since `tracepoint()` also contains
2601the `tracepoint_enabled()` check, thus a race condition is
2602possible in this situation:
2603
2604[source,c]
2605.Possible race condition when using `tracepoint_enabled()` with `tracepoint()`.
2606----
2607if (tracepoint_enabled(my_provider, my_tracepoint)) {
2608 stuff = prepare_stuff();
2609}
2610
2611tracepoint(my_provider, my_tracepoint, stuff);
2612----
2613
2614If the tracepoint is enabled after the condition, then `stuff` is not
2615prepared: the emitted event will either contain wrong data, or the whole
2616application could crash (segmentation fault, for example).
2617
2618NOTE: Neither `tracepoint_enabled()` nor `do_tracepoint()` have an
2619`STAP_PROBEV()` call. If you need it, you must emit
2620this call yourself.
2621
2622
2623[[building-tracepoint-providers-and-user-application]]
2624==== Build and link a tracepoint provider package and an application
2625
2626Once you have one or more <<tpp-header,tracepoint provider header
2627files>> and a <<tpp-source,tracepoint provider package source file>>,
2628you can create the tracepoint provider package by compiling its source
2629file. From here, multiple build and run scenarios are possible. The
2630following table shows common application and library configurations
2631along with the required command lines to achieve them.
2632
2633In the following diagrams, we use the following file names:
2634
2635`app`::
2636 Executable application.
2637
2638`app.o`::
2639 Application's object file.
2640
2641`tpp.o`::
2642 Tracepoint provider package object file.
2643
2644`tpp.a`::
2645 Tracepoint provider package archive file.
2646
2647`libtpp.so`::
2648 Tracepoint provider package shared object file.
2649
2650`emon.o`::
2651 User library object file.
2652
2653`libemon.so`::
2654 User library shared object file.
2655
2656We use the following symbols in the diagrams of table below:
2657
2658[role="img-100"]
2659.Symbols used in the build scenario diagrams.
2660image::ust-sit-symbols.png[]
2661
2662We assume that path:{.} is part of the env:LD_LIBRARY_PATH environment
2663variable in the following instructions.
2664
2665[role="growable ust-scenarios",cols="asciidoc,asciidoc"]
2666.Common tracepoint provider package scenarios.
2667|====
2668|Scenario |Instructions
2669
2670|
2671The instrumented application is statically linked with
2672the tracepoint provider package object.
2673
2674image::ust-sit+app-linked-with-tp-o+app-instrumented.png[]
2675
2676|
2677include::../common/ust-sit-step-tp-o.txt[]
2678
2679To build the instrumented application:
2680
2681. In path:{app.c}, before including path:{tpp.h}, add the following line:
2682+
2683--
2684[source,c]
2685----
2686#define TRACEPOINT_DEFINE
2687----
2688--
2689
2690. Compile the application source file:
2691+
2692--
2693[role="term"]
2694----
2695gcc -c app.c
2696----
2697--
2698
2699. Build the application:
2700+
2701--
2702[role="term"]
2703----
2704gcc -o app app.o tpp.o -llttng-ust -ldl
2705----
2706--
2707
2708To run the instrumented application:
2709
2710* Start the application:
2711+
2712--
2713[role="term"]
2714----
2715./app
2716----
2717--
2718
2719|
2720The instrumented application is statically linked with the
2721tracepoint provider package archive file.
2722
2723image::ust-sit+app-linked-with-tp-a+app-instrumented.png[]
2724
2725|
2726To create the tracepoint provider package archive file:
2727
2728. Compile the <<tpp-source,tracepoint provider package source file>>:
2729+
2730--
2731[role="term"]
2732----
2733gcc -I. -c tpp.c
2734----
2735--
2736
2737. Create the tracepoint provider package archive file:
2738+
2739--
2740[role="term"]
2741----
2742ar rcs tpp.a tpp.o
2743----
2744--
2745
2746To build the instrumented application:
2747
2748. In path:{app.c}, before including path:{tpp.h}, add the following line:
2749+
2750--
2751[source,c]
2752----
2753#define TRACEPOINT_DEFINE
2754----
2755--
2756
2757. Compile the application source file:
2758+
2759--
2760[role="term"]
2761----
2762gcc -c app.c
2763----
2764--
2765
2766. Build the application:
2767+
2768--
2769[role="term"]
2770----
2771gcc -o app app.o tpp.a -llttng-ust -ldl
2772----
2773--
2774
2775To run the instrumented application:
2776
2777* Start the application:
2778+
2779--
2780[role="term"]
2781----
2782./app
2783----
2784--
2785
2786|
2787The instrumented application is linked with the tracepoint provider
2788package shared object.
2789
2790image::ust-sit+app-linked-with-tp-so+app-instrumented.png[]
2791
2792|
2793include::../common/ust-sit-step-tp-so.txt[]
2794
2795To build the instrumented application:
2796
2797. In path:{app.c}, before including path:{tpp.h}, add the following line:
2798+
2799--
2800[source,c]
2801----
2802#define TRACEPOINT_DEFINE
2803----
2804--
2805
2806. Compile the application source file:
2807+
2808--
2809[role="term"]
2810----
2811gcc -c app.c
2812----
2813--
2814
2815. Build the application:
2816+
2817--
2818[role="term"]
2819----
2820gcc -o app app.o -ldl -L. -ltpp
2821----
2822--
2823
2824To run the instrumented application:
2825
2826* Start the application:
2827+
2828--
2829[role="term"]
2830----
2831./app
2832----
2833--
2834
2835|
2836The tracepoint provider package shared object is preloaded before the
2837instrumented application starts.
2838
2839image::ust-sit+tp-so-preloaded+app-instrumented.png[]
2840
2841|
2842include::../common/ust-sit-step-tp-so.txt[]
2843
2844To build the instrumented application:
2845
2846. In path:{app.c}, before including path:{tpp.h}, add the
2847 following lines:
2848+
2849--
2850[source,c]
2851----
2852#define TRACEPOINT_DEFINE
2853#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
2854----
2855--
2856
2857. Compile the application source file:
2858+
2859--
2860[role="term"]
2861----
2862gcc -c app.c
2863----
2864--
2865
2866. Build the application:
2867+
2868--
2869[role="term"]
2870----
2871gcc -o app app.o -ldl
2872----
2873--
2874
2875To run the instrumented application with tracing support:
2876
2877* Preload the tracepoint provider package shared object and
2878 start the application:
2879+
2880--
2881[role="term"]
2882----
2883LD_PRELOAD=./libtpp.so ./app
2884----
2885--
2886
2887To run the instrumented application without tracing support:
2888
2889* Start the application:
2890+
2891--
2892[role="term"]
2893----
2894./app
2895----
2896--
2897
2898|
2899The instrumented application dynamically loads the tracepoint provider
2900package shared object.
2901
2902See the <<dlclose-warning,warning about `dlclose()`>>.
2903
2904image::ust-sit+app-dlopens-tp-so+app-instrumented.png[]
2905
2906|
2907include::../common/ust-sit-step-tp-so.txt[]
2908
2909To build the instrumented application:
2910
2911. In path:{app.c}, before including path:{tpp.h}, add the
2912 following lines:
2913+
2914--
2915[source,c]
2916----
2917#define TRACEPOINT_DEFINE
2918#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
2919----
2920--
2921
2922. Compile the application source file:
2923+
2924--
2925[role="term"]
2926----
2927gcc -c app.c
2928----
2929--
2930
2931. Build the application:
2932+
2933--
2934[role="term"]
2935----
2936gcc -o app app.o -ldl
2937----
2938--
2939
2940To run the instrumented application:
2941
2942* Start the application:
2943+
2944--
2945[role="term"]
2946----
2947./app
2948----
2949--
2950
2951|
2952The application is linked with the instrumented user library.
2953
2954The instrumented user library is statically linked with the tracepoint
2955provider package object file.
2956
2957image::ust-sit+app-linked-with-lib+lib-linked-with-tp-o+lib-instrumented.png[]
2958
2959|
2960include::../common/ust-sit-step-tp-o-fpic.txt[]
2961
2962To build the instrumented user library:
2963
2964. In path:{emon.c}, before including path:{tpp.h}, add the
2965 following line:
2966+
2967--
2968[source,c]
2969----
2970#define TRACEPOINT_DEFINE
2971----
2972--
2973
2974. Compile the user library source file:
2975+
2976--
2977[role="term"]
2978----
2979gcc -I. -fpic -c emon.c
2980----
2981--
2982
2983. Build the user library shared object:
2984+
2985--
2986[role="term"]
2987----
2988gcc -shared -o libemon.so emon.o tpp.o -llttng-ust -ldl
2989----
2990--
2991
2992To build the application:
2993
2994. Compile the application source file:
2995+
2996--
2997[role="term"]
2998----
2999gcc -c app.c
3000----
3001--
3002
3003. Build the application:
3004+
3005--
3006[role="term"]
3007----
3008gcc -o app app.o -L. -lemon
3009----
3010--
3011
3012To run the application:
3013
3014* Start the application:
3015+
3016--
3017[role="term"]
3018----
3019./app
3020----
3021--
3022
3023|
3024The application is linked with the instrumented user library.
3025
3026The instrumented user library is linked with the tracepoint provider
3027package shared object.
3028
3029image::ust-sit+app-linked-with-lib+lib-linked-with-tp-so+lib-instrumented.png[]
3030
3031|
3032include::../common/ust-sit-step-tp-so.txt[]
3033
3034To build the instrumented user library:
3035
3036. In path:{emon.c}, before including path:{tpp.h}, add the
3037 following line:
3038+
3039--
3040[source,c]
3041----
3042#define TRACEPOINT_DEFINE
3043----
3044--
3045
3046. Compile the user library source file:
3047+
3048--
3049[role="term"]
3050----
3051gcc -I. -fpic -c emon.c
3052----
3053--
3054
3055. Build the user library shared object:
3056+
3057--
3058[role="term"]
3059----
3060gcc -shared -o libemon.so emon.o -ldl -L. -ltpp
3061----
3062--
3063
3064To build the application:
3065
3066. Compile the application source file:
3067+
3068--
3069[role="term"]
3070----
3071gcc -c app.c
3072----
3073--
3074
3075. Build the application:
3076+
3077--
3078[role="term"]
3079----
3080gcc -o app app.o -L. -lemon
3081----
3082--
3083
3084To run the application:
3085
3086* Start the application:
3087+
3088--
3089[role="term"]
3090----
3091./app
3092----
3093--
3094
3095|
3096The tracepoint provider package shared object is preloaded before the
3097application starts.
3098
3099The application is linked with the instrumented user library.
3100
3101image::ust-sit+tp-so-preloaded+app-linked-with-lib+lib-instrumented.png[]
3102
3103|
3104include::../common/ust-sit-step-tp-so.txt[]
3105
3106To build the instrumented user library:
3107
3108. In path:{emon.c}, before including path:{tpp.h}, add the
3109 following lines:
3110+
3111--
3112[source,c]
3113----
3114#define TRACEPOINT_DEFINE
3115#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
3116----
3117--
3118
3119. Compile the user library source file:
3120+
3121--
3122[role="term"]
3123----
3124gcc -I. -fpic -c emon.c
3125----
3126--
3127
3128. Build the user library shared object:
3129+
3130--
3131[role="term"]
3132----
3133gcc -shared -o libemon.so emon.o -ldl
3134----
3135--
3136
3137To build the application:
3138
3139. Compile the application source file:
3140+
3141--
3142[role="term"]
3143----
3144gcc -c app.c
3145----
3146--
3147
3148. Build the application:
3149+
3150--
3151[role="term"]
3152----
3153gcc -o app app.o -L. -lemon
3154----
3155--
3156
3157To run the application with tracing support:
3158
3159* Preload the tracepoint provider package shared object and
3160 start the application:
3161+
3162--
3163[role="term"]
3164----
3165LD_PRELOAD=./libtpp.so ./app
3166----
3167--
3168
3169To run the application without tracing support:
3170
3171* Start the application:
3172+
3173--
3174[role="term"]
3175----
3176./app
3177----
3178--
3179
3180|
3181The application is linked with the instrumented user library.
3182
3183The instrumented user library dynamically loads the tracepoint provider
3184package shared object.
3185
3186See the <<dlclose-warning,warning about `dlclose()`>>.
3187
3188image::ust-sit+app-linked-with-lib+lib-dlopens-tp-so+lib-instrumented.png[]
3189
3190|
3191include::../common/ust-sit-step-tp-so.txt[]
3192
3193To build the instrumented user library:
3194
3195. In path:{emon.c}, before including path:{tpp.h}, add the
3196 following lines:
3197+
3198--
3199[source,c]
3200----
3201#define TRACEPOINT_DEFINE
3202#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
3203----
3204--
3205
3206. Compile the user library source file:
3207+
3208--
3209[role="term"]
3210----
3211gcc -I. -fpic -c emon.c
3212----
3213--
3214
3215. Build the user library shared object:
3216+
3217--
3218[role="term"]
3219----
3220gcc -shared -o libemon.so emon.o -ldl
3221----
3222--
3223
3224To build the application:
3225
3226. Compile the application source file:
3227+
3228--
3229[role="term"]
3230----
3231gcc -c app.c
3232----
3233--
3234
3235. Build the application:
3236+
3237--
3238[role="term"]
3239----
3240gcc -o app app.o -L. -lemon
3241----
3242--
3243
3244To run the application:
3245
3246* Start the application:
3247+
3248--
3249[role="term"]
3250----
3251./app
3252----
3253--
3254
3255|
3256The application dynamically loads the instrumented user library.
3257
3258The instrumented user library is linked with the tracepoint provider
3259package shared object.
3260
3261See the <<dlclose-warning,warning about `dlclose()`>>.
3262
3263image::ust-sit+app-dlopens-lib+lib-linked-with-tp-so+lib-instrumented.png[]
3264
3265|
3266include::../common/ust-sit-step-tp-so.txt[]
3267
3268To build the instrumented user library:
3269
3270. In path:{emon.c}, before including path:{tpp.h}, add the
3271 following line:
3272+
3273--
3274[source,c]
3275----
3276#define TRACEPOINT_DEFINE
3277----
3278--
3279
3280. Compile the user library source file:
3281+
3282--
3283[role="term"]
3284----
3285gcc -I. -fpic -c emon.c
3286----
3287--
3288
3289. Build the user library shared object:
3290+
3291--
3292[role="term"]
3293----
3294gcc -shared -o libemon.so emon.o -ldl -L. -ltpp
3295----
3296--
3297
3298To build the application:
3299
3300. Compile the application source file:
3301+
3302--
3303[role="term"]
3304----
3305gcc -c app.c
3306----
3307--
3308
3309. Build the application:
3310+
3311--
3312[role="term"]
3313----
3314gcc -o app app.o -ldl -L. -lemon
3315----
3316--
3317
3318To run the application:
3319
3320* Start the application:
3321+
3322--
3323[role="term"]
3324----
3325./app
3326----
3327--
3328
3329|
3330The application dynamically loads the instrumented user library.
3331
3332The instrumented user library dynamically loads the tracepoint provider
3333package shared object.
3334
3335See the <<dlclose-warning,warning about `dlclose()`>>.
3336
3337image::ust-sit+app-dlopens-lib+lib-dlopens-tp-so+lib-instrumented.png[]
3338
3339|
3340include::../common/ust-sit-step-tp-so.txt[]
3341
3342To build the instrumented user library:
3343
3344. In path:{emon.c}, before including path:{tpp.h}, add the
3345 following lines:
3346+
3347--
3348[source,c]
3349----
3350#define TRACEPOINT_DEFINE
3351#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
3352----
3353--
3354
3355. Compile the user library source file:
3356+
3357--
3358[role="term"]
3359----
3360gcc -I. -fpic -c emon.c
3361----
3362--
3363
3364. Build the user library shared object:
3365+
3366--
3367[role="term"]
3368----
3369gcc -shared -o libemon.so emon.o -ldl
3370----
3371--
3372
3373To build the application:
3374
3375. Compile the application source file:
3376+
3377--
3378[role="term"]
3379----
3380gcc -c app.c
3381----
3382--
3383
3384. Build the application:
3385+
3386--
3387[role="term"]
3388----
3389gcc -o app app.o -ldl -L. -lemon
3390----
3391--
3392
3393To run the application:
3394
3395* Start the application:
3396+
3397--
3398[role="term"]
3399----
3400./app
3401----
3402--
3403
3404|
3405The tracepoint provider package shared object is preloaded before the
3406application starts.
3407
3408The application dynamically loads the instrumented user library.
3409
3410image::ust-sit+tp-so-preloaded+app-dlopens-lib+lib-instrumented.png[]
3411
3412|
3413include::../common/ust-sit-step-tp-so.txt[]
3414
3415To build the instrumented user library:
3416
3417. In path:{emon.c}, before including path:{tpp.h}, add the
3418 following lines:
3419+
3420--
3421[source,c]
3422----
3423#define TRACEPOINT_DEFINE
3424#define TRACEPOINT_PROBE_DYNAMIC_LINKAGE
3425----
3426--
3427
3428. Compile the user library source file:
3429+
3430--
3431[role="term"]
3432----
3433gcc -I. -fpic -c emon.c
3434----
3435--
3436
3437. Build the user library shared object:
3438+
3439--
3440[role="term"]
3441----
3442gcc -shared -o libemon.so emon.o -ldl
3443----
3444--
3445
3446To build the application:
3447
3448. Compile the application source file:
3449+
3450--
3451[role="term"]
3452----
3453gcc -c app.c
3454----
3455--
3456
3457. Build the application:
3458+
3459--
3460[role="term"]
3461----
3462gcc -o app app.o -L. -lemon
3463----
3464--
3465
3466To run the application with tracing support:
3467
3468* Preload the tracepoint provider package shared object and
3469 start the application:
3470+
3471--
3472[role="term"]
3473----
3474LD_PRELOAD=./libtpp.so ./app
3475----
3476--
3477
3478To run the application without tracing support:
3479
3480* Start the application:
3481+
3482--
3483[role="term"]
3484----
3485./app
3486----
3487--
3488
3489|
3490The application is statically linked with the tracepoint provider
3491package object file.
3492
3493The application is linked with the instrumented user library.
3494
3495image::ust-sit+app-linked-with-tp-o+app-linked-with-lib+lib-instrumented.png[]
3496
3497|
3498include::../common/ust-sit-step-tp-o.txt[]
3499
3500To build the instrumented user library:
3501
3502. In path:{emon.c}, before including path:{tpp.h}, add the
3503 following line:
3504+
3505--
3506[source,c]
3507----
3508#define TRACEPOINT_DEFINE
3509----
3510--
3511
3512. Compile the user library source file:
3513+
3514--
3515[role="term"]
3516----
3517gcc -I. -fpic -c emon.c
3518----
3519--
3520
3521. Build the user library shared object:
3522+
3523--
3524[role="term"]
3525----
3526gcc -shared -o libemon.so emon.o
3527----
3528--
3529
3530To build the application:
3531
3532. Compile the application source file:
3533+
3534--
3535[role="term"]
3536----
3537gcc -c app.c
3538----
3539--
3540
3541. Build the application:
3542+
3543--
3544[role="term"]
3545----
3546gcc -o app app.o tpp.o -llttng-ust -ldl -L. -lemon
3547----
3548--
3549
3550To run the instrumented application:
3551
3552* Start the application:
3553+
3554--
3555[role="term"]
3556----
3557./app
3558----
3559--
3560
3561|
3562The application is statically linked with the tracepoint provider
3563package object file.
3564
3565The application dynamically loads the instrumented user library.
3566
3567image::ust-sit+app-linked-with-tp-o+app-dlopens-lib+lib-instrumented.png[]
3568
3569|
3570include::../common/ust-sit-step-tp-o.txt[]
3571
3572To build the application:
3573
3574. In path:{app.c}, before including path:{tpp.h}, add the following line:
3575+
3576--
3577[source,c]
3578----
3579#define TRACEPOINT_DEFINE
3580----
3581--
3582
3583. Compile the application source file:
3584+
3585--
3586[role="term"]
3587----
3588gcc -c app.c
3589----
3590--
3591
3592. Build the application:
3593+
3594--
3595[role="term"]
3596----
3597gcc -Wl,--export-dynamic -o app app.o tpp.o \
3598 -llttng-ust -ldl
3599----
3600--
3601+
3602The `--export-dynamic` option passed to the linker is necessary for the
3603dynamically loaded library to ``see'' the tracepoint symbols defined in
3604the application.
3605
3606To build the instrumented user library:
3607
3608. Compile the user library source file:
3609+
3610--
3611[role="term"]
3612----
3613gcc -I. -fpic -c emon.c
3614----
3615--
3616
3617. Build the user library shared object:
3618+
3619--
3620[role="term"]
3621----
3622gcc -shared -o libemon.so emon.o
3623----
3624--
3625
3626To run the application:
3627
3628* Start the application:
3629+
3630--
3631[role="term"]
3632----
3633./app
3634----
3635--
3636|====
3637
3638[[dlclose-warning]]
3639[IMPORTANT]
3640.Do not use man:dlclose(3) on a tracepoint provider package
3641====
3642Never use man:dlclose(3) on any shared object which:
3643
3644* Is linked with, statically or dynamically, a tracepoint provider
3645 package.
3646* Calls man:dlopen(3) itself to dynamically open a tracepoint provider
3647 package shared object.
3648
3649This is currently considered **unsafe** due to a lack of reference
3650counting from LTTng-UST to the shared object.
3651
3652A known workaround (available since glibc 2.2) is to use the
3653`RTLD_NODELETE` flag when calling man:dlopen(3) initially. This has the
3654effect of not unloading the loaded shared object, even if man:dlclose(3)
3655is called.
3656
3657You can also preload the tracepoint provider package shared object with
3658the env:LD_PRELOAD environment variable to overcome this limitation.
3659====
3660
3661
3662[[using-lttng-ust-with-daemons]]
3663===== Use noch:{LTTng-UST} with daemons
3664
3665If your instrumented application calls man:fork(2), man:clone(2),
3666or BSD's man:rfork(2), without a following man:exec(3)-family
3667system call, you must preload the path:{liblttng-ust-fork.so} shared
3668object when you start the application.
3669
3670[role="term"]
3671----
3672LD_PRELOAD=liblttng-ust-fork.so ./my-app
3673----
3674
3675If your tracepoint provider package is
3676a shared library which you also preload, you must put both
3677shared objects in env:LD_PRELOAD:
3678
3679[role="term"]
3680----
3681LD_PRELOAD=liblttng-ust-fork.so:/path/to/tp.so ./my-app
3682----
3683
3684
3685[role="since-2.9"]
3686[[liblttng-ust-fd]]
3687===== Use noch:{LTTng-UST} with applications which close file descriptors that don't belong to them
3688
3689If your instrumented application closes one or more file descriptors
3690which it did not open itself, you must preload the
3691path:{liblttng-ust-fd.so} shared object when you start the application:
3692
3693[role="term"]
3694----
3695LD_PRELOAD=liblttng-ust-fd.so ./my-app
3696----
3697
3698Typical use cases include closing all the file descriptors after
3699man:fork(2) or man:rfork(2) and buggy applications doing
3700``double closes''.
3701
3702
3703[[lttng-ust-pkg-config]]
3704===== Use noch:{pkg-config}
3705
3706On some distributions, LTTng-UST ships with a
3707https://www.freedesktop.org/wiki/Software/pkg-config/[pkg-config]
3708metadata file. If this is your case, then you can use cmd:pkg-config to
3709build an application on the command line:
3710
3711[role="term"]
3712----
3713gcc -o my-app my-app.o tp.o $(pkg-config --cflags --libs lttng-ust)
3714----
3715
3716
3717[[instrumenting-32-bit-app-on-64-bit-system]]
3718===== [[advanced-instrumenting-techniques]]Build a 32-bit instrumented application for a 64-bit target system
3719
3720In order to trace a 32-bit application running on a 64-bit system,
3721LTTng must use a dedicated 32-bit
3722<<lttng-consumerd,consumer daemon>>.
3723
3724The following steps show how to build and install a 32-bit consumer
3725daemon, which is _not_ part of the default 64-bit LTTng build, how to
3726build and install the 32-bit LTTng-UST libraries, and how to build and
3727link an instrumented 32-bit application in that context.
3728
3729To build a 32-bit instrumented application for a 64-bit target system,
3730assuming you have a fresh target system with no installed Userspace RCU
3731or LTTng packages:
3732
3733. Download, build, and install a 32-bit version of Userspace RCU:
3734+
3735--
3736[role="term"]
3737----
3738cd $(mktemp -d) &&
3739wget http://lttng.org/files/urcu/userspace-rcu-latest-0.9.tar.bz2 &&
3740tar -xf userspace-rcu-latest-0.9.tar.bz2 &&
3741cd userspace-rcu-0.9.* &&
3742./configure --libdir=/usr/local/lib32 CFLAGS=-m32 &&
3743make &&
3744sudo make install &&
3745sudo ldconfig
3746----
3747--
3748
3749. Using your distribution's package manager, or from source, install
3750 the following 32-bit versions of the following dependencies of
3751 LTTng-tools and LTTng-UST:
3752+
3753--
3754* https://sourceforge.net/projects/libuuid/[libuuid]
3755* http://directory.fsf.org/wiki/Popt[popt]
3756* http://www.xmlsoft.org/[libxml2]
3757--
3758
3759. Download, build, and install a 32-bit version of the latest
3760 LTTng-UST{nbsp}{revision}:
3761+
3762--
3763[role="term"]
3764----
3765cd $(mktemp -d) &&
3766wget http://lttng.org/files/lttng-ust/lttng-ust-latest-2.9.tar.bz2 &&
3767tar -xf lttng-ust-latest-2.9.tar.bz2 &&
3768cd lttng-ust-2.9.* &&
3769./configure --libdir=/usr/local/lib32 \
3770 CFLAGS=-m32 CXXFLAGS=-m32 \
3771 LDFLAGS='-L/usr/local/lib32 -L/usr/lib32' &&
3772make &&
3773sudo make install &&
3774sudo ldconfig
3775----
3776--
3777+
3778[NOTE]
3779====
3780Depending on your distribution,
378132-bit libraries could be installed at a different location than
3782`/usr/lib32`. For example, Debian is known to install
3783some 32-bit libraries in `/usr/lib/i386-linux-gnu`.
3784
3785In this case, make sure to set `LDFLAGS` to all the
3786relevant 32-bit library paths, for example:
3787
3788[role="term"]
3789----
3790LDFLAGS='-L/usr/lib/i386-linux-gnu -L/usr/lib32'
3791----
3792====
3793
3794. Download the latest LTTng-tools{nbsp}{revision}, build, and install
3795 the 32-bit consumer daemon:
3796+
3797--
3798[role="term"]
3799----
3800cd $(mktemp -d) &&
3801wget http://lttng.org/files/lttng-tools/lttng-tools-latest-2.9.tar.bz2 &&
3802tar -xf lttng-tools-latest-2.9.tar.bz2 &&
3803cd lttng-tools-2.9.* &&
3804./configure --libdir=/usr/local/lib32 CFLAGS=-m32 CXXFLAGS=-m32 \
3805 LDFLAGS='-L/usr/local/lib32 -L/usr/lib32' &&
3806make &&
3807cd src/bin/lttng-consumerd &&
3808sudo make install &&
3809sudo ldconfig
3810----
3811--
3812
3813. From your distribution or from source,
3814 <<installing-lttng,install>> the 64-bit versions of
3815 LTTng-UST and Userspace RCU.
3816. Download, build, and install the 64-bit version of the
3817 latest LTTng-tools{nbsp}{revision}:
3818+
3819--
3820[role="term"]
3821----
3822cd $(mktemp -d) &&
3823wget http://lttng.org/files/lttng-tools/lttng-tools-latest-2.9.tar.bz2 &&
3824tar -xf lttng-tools-latest-2.9.tar.bz2 &&
3825cd lttng-tools-2.9.* &&
3826./configure --with-consumerd32-libdir=/usr/local/lib32 \
3827 --with-consumerd32-bin=/usr/local/lib32/lttng/libexec/lttng-consumerd &&
3828make &&
3829sudo make install &&
3830sudo ldconfig
3831----
3832--
3833
3834. Pass the following options to man:gcc(1), man:g++(1), or man:clang(1)
3835 when linking your 32-bit application:
3836+
3837----
3838-m32 -L/usr/lib32 -L/usr/local/lib32 \
3839-Wl,-rpath,/usr/lib32,-rpath,/usr/local/lib32
3840----
3841+
3842For example, let's rebuild the quick start example in
3843<<tracing-your-own-user-application,Trace a user application>> as an
3844instrumented 32-bit application:
3845+
3846--
3847[role="term"]
3848----
3849gcc -m32 -c -I. hello-tp.c
3850gcc -m32 -c hello.c
3851gcc -m32 -o hello hello.o hello-tp.o \
3852 -L/usr/lib32 -L/usr/local/lib32 \
3853 -Wl,-rpath,/usr/lib32,-rpath,/usr/local/lib32 \
3854 -llttng-ust -ldl
3855----
3856--
3857
3858No special action is required to execute the 32-bit application and
3859to trace it: use the command-line man:lttng(1) tool as usual.
3860
3861
3862[role="since-2.5"]
3863[[tracef]]
3864==== Use `tracef()`
3865
3866man:tracef(3) is a small LTTng-UST API designed for quick,
3867man:printf(3)-like instrumentation without the burden of
3868<<tracepoint-provider,creating>> and
3869<<building-tracepoint-providers-and-user-application,building>>
3870a tracepoint provider package.
3871
3872To use `tracef()` in your application:
3873
3874. In the C or C++ source files where you need to use `tracef()`,
3875 include `<lttng/tracef.h>`:
3876+
3877--
3878[source,c]
3879----
3880#include <lttng/tracef.h>
3881----
3882--
3883
3884. In the application's source code, use `tracef()` like you would use
3885 man:printf(3):
3886+
3887--
3888[source,c]
3889----
3890 /* ... */
3891
3892 tracef("my message: %d (%s)", my_integer, my_string);
3893
3894 /* ... */
3895----
3896--
3897
3898. Link your application with `liblttng-ust`:
3899+
3900--
3901[role="term"]
3902----
3903gcc -o app app.c -llttng-ust
3904----
3905--
3906
3907To trace the events that `tracef()` calls emit:
3908
3909* <<enabling-disabling-events,Create an event rule>> which matches the
3910 `lttng_ust_tracef:*` event name:
3911+
3912--
3913[role="term"]
3914----
3915lttng enable-event --userspace 'lttng_ust_tracef:*'
3916----
3917--
3918
3919[IMPORTANT]
3920.Limitations of `tracef()`
3921====
3922The `tracef()` utility function was developed to make user space tracing
3923super simple, albeit with notable disadvantages compared to
3924<<defining-tracepoints,user-defined tracepoints>>:
3925
3926* All the emitted events have the same tracepoint provider and
3927 tracepoint names, respectively `lttng_ust_tracef` and `event`.
3928* There is no static type checking.
3929* The only event record field you actually get, named `msg`, is a string
3930 potentially containing the values you passed to `tracef()`
3931 using your own format string. This also means that you cannot filter
3932 events with a custom expression at run time because there are no
3933 isolated fields.
3934* Since `tracef()` uses the C standard library's man:vasprintf(3)
3935 function behind the scenes to format the strings at run time, its
3936 expected performance is lower than with user-defined tracepoints,
3937 which do not require a conversion to a string.
3938
3939Taking this into consideration, `tracef()` is useful for some quick
3940prototyping and debugging, but you should not consider it for any
3941permanent and serious applicative instrumentation.
3942====
3943
3944
3945[role="since-2.7"]
3946[[tracelog]]
3947==== Use `tracelog()`
3948
3949The man:tracelog(3) API is very similar to <<tracef,`tracef()`>>, with
3950the difference that it accepts an additional log level parameter.
3951
3952The goal of `tracelog()` is to ease the migration from logging to
3953tracing.
3954
3955To use `tracelog()` in your application:
3956
3957. In the C or C++ source files where you need to use `tracelog()`,
3958 include `<lttng/tracelog.h>`:
3959+
3960--
3961[source,c]
3962----
3963#include <lttng/tracelog.h>
3964----
3965--
3966
3967. In the application's source code, use `tracelog()` like you would use
3968 man:printf(3), except for the first parameter which is the log
3969 level:
3970+
3971--
3972[source,c]
3973----
3974 /* ... */
3975
3976 tracelog(TRACE_WARNING, "my message: %d (%s)",
3977 my_integer, my_string);
3978
3979 /* ... */
3980----
3981--
3982+
3983See man:lttng-ust(3) for a list of available log level names.
3984
3985. Link your application with `liblttng-ust`:
3986+
3987--
3988[role="term"]
3989----
3990gcc -o app app.c -llttng-ust
3991----
3992--
3993
3994To trace the events that `tracelog()` calls emit with a log level
3995_as severe as_ a specific log level:
3996
3997* <<enabling-disabling-events,Create an event rule>> which matches the
3998 `lttng_ust_tracelog:*` event name and a minimum level
3999 of severity:
4000+
4001--
4002[role="term"]
4003----
4004lttng enable-event --userspace 'lttng_ust_tracelog:*'
4005 --loglevel=TRACE_WARNING
4006----
4007--
4008
4009To trace the events that `tracelog()` calls emit with a
4010_specific log level_:
4011
4012* Create an event rule which matches the `lttng_ust_tracelog:*`
4013 event name and a specific log level:
4014+
4015--
4016[role="term"]
4017----
4018lttng enable-event --userspace 'lttng_ust_tracelog:*'
4019 --loglevel-only=TRACE_INFO
4020----
4021--
4022
4023
4024[[prebuilt-ust-helpers]]
4025=== Prebuilt user space tracing helpers
4026
4027The LTTng-UST package provides a few helpers in the form or preloadable
4028shared objects which automatically instrument system functions and
4029calls.
4030
4031The helper shared objects are normally found in dir:{/usr/lib}. If you
4032built LTTng-UST <<building-from-source,from source>>, they are probably
4033located in dir:{/usr/local/lib}.
4034
4035The installed user space tracing helpers in LTTng-UST{nbsp}{revision}
4036are:
4037
4038path:{liblttng-ust-libc-wrapper.so}::
4039path:{liblttng-ust-pthread-wrapper.so}::
4040 <<liblttng-ust-libc-pthread-wrapper,C{nbsp}standard library
4041 memory and POSIX threads function tracing>>.
4042
4043path:{liblttng-ust-cyg-profile.so}::
4044path:{liblttng-ust-cyg-profile-fast.so}::
4045 <<liblttng-ust-cyg-profile,Function entry and exit tracing>>.
4046
4047path:{liblttng-ust-dl.so}::
4048 <<liblttng-ust-dl,Dynamic linker tracing>>.
4049
4050To use a user space tracing helper with any user application:
4051
4052* Preload the helper shared object when you start the application:
4053+
4054--
4055[role="term"]
4056----
4057LD_PRELOAD=liblttng-ust-libc-wrapper.so my-app
4058----
4059--
4060+
4061You can preload more than one helper:
4062+
4063--
4064[role="term"]
4065----
4066LD_PRELOAD=liblttng-ust-libc-wrapper.so:liblttng-ust-dl.so my-app
4067----
4068--
4069
4070
4071[role="since-2.3"]
4072[[liblttng-ust-libc-pthread-wrapper]]
4073==== Instrument C standard library memory and POSIX threads functions
4074
4075The path:{liblttng-ust-libc-wrapper.so} and
4076path:{liblttng-ust-pthread-wrapper.so} helpers
4077add instrumentation to some C standard library and POSIX
4078threads functions.
4079
4080[role="growable"]
4081.Functions instrumented by preloading path:{liblttng-ust-libc-wrapper.so}.
4082|====
4083|TP provider name |TP name |Instrumented function
4084
4085.6+|`lttng_ust_libc` |`malloc` |man:malloc(3)
4086 |`calloc` |man:calloc(3)
4087 |`realloc` |man:realloc(3)
4088 |`free` |man:free(3)
4089 |`memalign` |man:memalign(3)
4090 |`posix_memalign` |man:posix_memalign(3)
4091|====
4092
4093[role="growable"]
4094.Functions instrumented by preloading path:{liblttng-ust-pthread-wrapper.so}.
4095|====
4096|TP provider name |TP name |Instrumented function
4097
4098.4+|`lttng_ust_pthread` |`pthread_mutex_lock_req` |man:pthread_mutex_lock(3p) (request time)
4099 |`pthread_mutex_lock_acq` |man:pthread_mutex_lock(3p) (acquire time)
4100 |`pthread_mutex_trylock` |man:pthread_mutex_trylock(3p)
4101 |`pthread_mutex_unlock` |man:pthread_mutex_unlock(3p)
4102|====
4103
4104When you preload the shared object, it replaces the functions listed
4105in the previous tables by wrappers which contain tracepoints and call
4106the replaced functions.
4107
4108
4109[[liblttng-ust-cyg-profile]]
4110==== Instrument function entry and exit
4111
4112The path:{liblttng-ust-cyg-profile*.so} helpers can add instrumentation
4113to the entry and exit points of functions.
4114
4115man:gcc(1) and man:clang(1) have an option named
4116https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html[`-finstrument-functions`]
4117which generates instrumentation calls for entry and exit to functions.
4118The LTTng-UST function tracing helpers,
4119path:{liblttng-ust-cyg-profile.so} and
4120path:{liblttng-ust-cyg-profile-fast.so}, take advantage of this feature
4121to add tracepoints to the two generated functions (which contain
4122`cyg_profile` in their names, hence the helper's name).
4123
4124To use the LTTng-UST function tracing helper, the source files to
4125instrument must be built using the `-finstrument-functions` compiler
4126flag.
4127
4128There are two versions of the LTTng-UST function tracing helper:
4129
4130* **path:{liblttng-ust-cyg-profile-fast.so}** is a lightweight variant
4131 that you should only use when it can be _guaranteed_ that the
4132 complete event stream is recorded without any lost event record.
4133 Any kind of duplicate information is left out.
4134+
4135Assuming no event record is lost, having only the function addresses on
4136entry is enough to create a call graph, since an event record always
4137contains the ID of the CPU that generated it.
4138+
4139You can use a tool like man:addr2line(1) to convert function addresses
4140back to source file names and line numbers.
4141
4142* **path:{liblttng-ust-cyg-profile.so}** is a more robust variant
4143which also works in use cases where event records might get discarded or
4144not recorded from application startup.
4145In these cases, the trace analyzer needs more information to be
4146able to reconstruct the program flow.
4147
4148See man:lttng-ust-cyg-profile(3) to learn more about the instrumentation
4149points of this helper.
4150
4151All the tracepoints that this helper provides have the
4152log level `TRACE_DEBUG_FUNCTION` (see man:lttng-ust(3)).
4153
4154TIP: It's sometimes a good idea to limit the number of source files that
4155you compile with the `-finstrument-functions` option to prevent LTTng
4156from writing an excessive amount of trace data at run time. When using
4157man:gcc(1), you can use the
4158`-finstrument-functions-exclude-function-list` option to avoid
4159instrument entries and exits of specific function names.
4160
4161
4162[role="since-2.4"]
4163[[liblttng-ust-dl]]
4164==== Instrument the dynamic linker
4165
4166The path:{liblttng-ust-dl.so} helper adds instrumentation to the
4167man:dlopen(3) and man:dlclose(3) function calls.
4168
4169See man:lttng-ust-dl(3) to learn more about the instrumentation points
4170of this helper.
4171
4172
4173[role="since-2.4"]
4174[[java-application]]
4175=== User space Java agent
4176
4177You can instrument any Java application which uses one of the following
4178logging frameworks:
4179
4180* The https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html[**`java.util.logging`**]
4181 (JUL) core logging facilities.
4182* http://logging.apache.org/log4j/1.2/[**Apache log4j 1.2**], since
4183 LTTng 2.6. Note that Apache Log4j{nbsp}2 is not supported.
4184
4185[role="img-100"]
4186.LTTng-UST Java agent imported by a Java application.
4187image::java-app.png[]
4188
4189Note that the methods described below are new in LTTng{nbsp}{revision}.
4190Previous LTTng versions use another technique.
4191
4192NOTE: We use http://openjdk.java.net/[OpenJDK]{nbsp}8 for development
4193and https://ci.lttng.org/[continuous integration], thus this version is
4194directly supported. However, the LTTng-UST Java agent is also tested
4195with OpenJDK{nbsp}7.
4196
4197
4198[role="since-2.8"]
4199[[jul]]
4200==== Use the LTTng-UST Java agent for `java.util.logging`
4201
4202To use the LTTng-UST Java agent in a Java application which uses
4203`java.util.logging` (JUL):
4204
4205. In the Java application's source code, import the LTTng-UST
4206 log handler package for `java.util.logging`:
4207+
4208--
4209[source,java]
4210----
4211import org.lttng.ust.agent.jul.LttngLogHandler;
4212----
4213--
4214
4215. Create an LTTng-UST JUL log handler:
4216+
4217--
4218[source,java]
4219----
4220Handler lttngUstLogHandler = new LttngLogHandler();
4221----
4222--
4223
4224. Add this handler to the JUL loggers which should emit LTTng events:
4225+
4226--
4227[source,java]
4228----
4229Logger myLogger = Logger.getLogger("some-logger");
4230
4231myLogger.addHandler(lttngUstLogHandler);
4232----
4233--
4234
4235. Use `java.util.logging` log statements and configuration as usual.
4236 The loggers with an attached LTTng-UST log handler can emit
4237 LTTng events.
4238
4239. Before exiting the application, remove the LTTng-UST log handler from
4240 the loggers attached to it and call its `close()` method:
4241+
4242--
4243[source,java]
4244----
4245myLogger.removeHandler(lttngUstLogHandler);
4246lttngUstLogHandler.close();
4247----
4248--
4249+
4250This is not strictly necessary, but it is recommended for a clean
4251disposal of the handler's resources.
4252
4253. Include the LTTng-UST Java agent's common and JUL-specific JAR files,
4254 path:{lttng-ust-agent-common.jar} and path:{lttng-ust-agent-jul.jar},
4255 in the
4256 https://docs.oracle.com/javase/tutorial/essential/environment/paths.html[class
4257 path] when you build the Java application.
4258+
4259The JAR files are typically located in dir:{/usr/share/java}.
4260+
4261IMPORTANT: The LTTng-UST Java agent must be
4262<<installing-lttng,installed>> for the logging framework your
4263application uses.
4264
4265.Use the LTTng-UST Java agent for `java.util.logging`.
4266====
4267[source,java]
4268.path:{Test.java}
4269----
4270import java.io.IOException;
4271import java.util.logging.Handler;
4272import java.util.logging.Logger;
4273import org.lttng.ust.agent.jul.LttngLogHandler;
4274
4275public class Test
4276{
4277 private static final int answer = 42;
4278
4279 public static void main(String[] argv) throws Exception
4280 {
4281 // Create a logger
4282 Logger logger = Logger.getLogger("jello");
4283
4284 // Create an LTTng-UST log handler
4285 Handler lttngUstLogHandler = new LttngLogHandler();
4286
4287 // Add the LTTng-UST log handler to our logger
4288 logger.addHandler(lttngUstLogHandler);
4289
4290 // Log at will!
4291 logger.info("some info");
4292 logger.warning("some warning");
4293 Thread.sleep(500);
4294 logger.finer("finer information; the answer is " + answer);
4295 Thread.sleep(123);
4296 logger.severe("error!");
4297
4298 // Not mandatory, but cleaner
4299 logger.removeHandler(lttngUstLogHandler);
4300 lttngUstLogHandler.close();
4301 }
4302}
4303----
4304
4305Build this example:
4306
4307[role="term"]
4308----
4309javac -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-jul.jar Test.java
4310----
4311
4312<<creating-destroying-tracing-sessions,Create a tracing session>>,
4313<<enabling-disabling-events,create an event rule>> matching the
4314`jello` JUL logger, and <<basic-tracing-session-control,start tracing>>:
4315
4316[role="term"]
4317----
4318lttng create
4319lttng enable-event --jul jello
4320lttng start
4321----
4322
4323Run the compiled class:
4324
4325[role="term"]
4326----
4327java -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-jul.jar:. Test
4328----
4329
4330<<basic-tracing-session-control,Stop tracing>> and inspect the
4331recorded events:
4332
4333[role="term"]
4334----
4335lttng stop
4336lttng view
4337----
4338====
4339
4340You can use the opt:lttng-enable-event(1):--loglevel or
4341opt:lttng-enable-event(1):--loglevel-only option of the
4342man:lttng-enable-event(1) command to target a range of JUL log levels
4343or a specific JUL log level.
4344
4345
4346[role="since-2.8"]
4347[[log4j]]
4348==== Use the LTTng-UST Java agent for Apache log4j
4349
4350To use the LTTng-UST Java agent in a Java application which uses
4351Apache log4j 1.2:
4352
4353. In the Java application's source code, import the LTTng-UST
4354 log appender package for Apache log4j:
4355+
4356--
4357[source,java]
4358----
4359import org.lttng.ust.agent.log4j.LttngLogAppender;
4360----
4361--
4362
4363. Create an LTTng-UST log4j log appender:
4364+
4365--
4366[source,java]
4367----
4368Appender lttngUstLogAppender = new LttngLogAppender();
4369----
4370--
4371
4372. Add this appender to the log4j loggers which should emit LTTng events:
4373+
4374--
4375[source,java]
4376----
4377Logger myLogger = Logger.getLogger("some-logger");
4378
4379myLogger.addAppender(lttngUstLogAppender);
4380----
4381--
4382
4383. Use Apache log4j log statements and configuration as usual. The
4384 loggers with an attached LTTng-UST log appender can emit LTTng events.
4385
4386. Before exiting the application, remove the LTTng-UST log appender from
4387 the loggers attached to it and call its `close()` method:
4388+
4389--
4390[source,java]
4391----
4392myLogger.removeAppender(lttngUstLogAppender);
4393lttngUstLogAppender.close();
4394----
4395--
4396+
4397This is not strictly necessary, but it is recommended for a clean
4398disposal of the appender's resources.
4399
4400. Include the LTTng-UST Java agent's common and log4j-specific JAR
4401 files, path:{lttng-ust-agent-common.jar} and
4402 path:{lttng-ust-agent-log4j.jar}, in the
4403 https://docs.oracle.com/javase/tutorial/essential/environment/paths.html[class
4404 path] when you build the Java application.
4405+
4406The JAR files are typically located in dir:{/usr/share/java}.
4407+
4408IMPORTANT: The LTTng-UST Java agent must be
4409<<installing-lttng,installed>> for the logging framework your
4410application uses.
4411
4412.Use the LTTng-UST Java agent for Apache log4j.
4413====
4414[source,java]
4415.path:{Test.java}
4416----
4417import org.apache.log4j.Appender;
4418import org.apache.log4j.Logger;
4419import org.lttng.ust.agent.log4j.LttngLogAppender;
4420
4421public class Test
4422{
4423 private static final int answer = 42;
4424
4425 public static void main(String[] argv) throws Exception
4426 {
4427 // Create a logger
4428 Logger logger = Logger.getLogger("jello");
4429
4430 // Create an LTTng-UST log appender
4431 Appender lttngUstLogAppender = new LttngLogAppender();
4432
4433 // Add the LTTng-UST log appender to our logger
4434 logger.addAppender(lttngUstLogAppender);
4435
4436 // Log at will!
4437 logger.info("some info");
4438 logger.warn("some warning");
4439 Thread.sleep(500);
4440 logger.debug("debug information; the answer is " + answer);
4441 Thread.sleep(123);
4442 logger.fatal("error!");
4443
4444 // Not mandatory, but cleaner
4445 logger.removeAppender(lttngUstLogAppender);
4446 lttngUstLogAppender.close();
4447 }
4448}
4449
4450----
4451
4452Build this example (`$LOG4JPATH` is the path to the Apache log4j JAR
4453file):
4454
4455[role="term"]
4456----
4457javac -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-log4j.jar:$LOG4JPATH Test.java
4458----
4459
4460<<creating-destroying-tracing-sessions,Create a tracing session>>,
4461<<enabling-disabling-events,create an event rule>> matching the
4462`jello` log4j logger, and <<basic-tracing-session-control,start tracing>>:
4463
4464[role="term"]
4465----
4466lttng create
4467lttng enable-event --log4j jello
4468lttng start
4469----
4470
4471Run the compiled class:
4472
4473[role="term"]
4474----
4475java -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-log4j.jar:$LOG4JPATH:. Test
4476----
4477
4478<<basic-tracing-session-control,Stop tracing>> and inspect the
4479recorded events:
4480
4481[role="term"]
4482----
4483lttng stop
4484lttng view
4485----
4486====
4487
4488You can use the opt:lttng-enable-event(1):--loglevel or
4489opt:lttng-enable-event(1):--loglevel-only option of the
4490man:lttng-enable-event(1) command to target a range of Apache log4j log levels
4491or a specific log4j log level.
4492
4493
4494[role="since-2.8"]
4495[[java-application-context]]
4496==== Provide application-specific context fields in a Java application
4497
4498A Java application-specific context field is a piece of state provided
4499by the application which <<adding-context,you can add>>, using the
4500man:lttng-add-context(1) command, to each <<event,event record>>
4501produced by the log statements of this application.
4502
4503For example, a given object might have a current request ID variable.
4504You can create a context information retriever for this object and
4505assign a name to this current request ID. You can then, using the
4506man:lttng-add-context(1) command, add this context field by name to
4507the JUL or log4j <<channel,channel>>.
4508
4509To provide application-specific context fields in a Java application:
4510
4511. In the Java application's source code, import the LTTng-UST
4512 Java agent context classes and interfaces:
4513+
4514--
4515[source,java]
4516----
4517import org.lttng.ust.agent.context.ContextInfoManager;
4518import org.lttng.ust.agent.context.IContextInfoRetriever;
4519----
4520--
4521
4522. Create a context information retriever class, that is, a class which
4523 implements the `IContextInfoRetriever` interface:
4524+
4525--
4526[source,java]
4527----
4528class MyContextInfoRetriever implements IContextInfoRetriever
4529{
4530 @Override
4531 public Object retrieveContextInfo(String key)
4532 {
4533 if (key.equals("intCtx")) {
4534 return (short) 17;
4535 } else if (key.equals("strContext")) {
4536 return "context value!";
4537 } else {
4538 return null;
4539 }
4540 }
4541}
4542----
4543--
4544+
4545This `retrieveContextInfo()` method is the only member of the
4546`IContextInfoRetriever` interface. Its role is to return the current
4547value of a state by name to create a context field. The names of the
4548context fields and which state variables they return depends on your
4549specific scenario.
4550+
4551All primitive types and objects are supported as context fields.
4552When `retrieveContextInfo()` returns an object, the context field
4553serializer calls its `toString()` method to add a string field to
4554event records. The method can also return `null`, which means that
4555no context field is available for the required name.
4556
4557. Register an instance of your context information retriever class to
4558 the context information manager singleton:
4559+
4560--
4561[source,java]
4562----
4563IContextInfoRetriever cir = new MyContextInfoRetriever();
4564ContextInfoManager cim = ContextInfoManager.getInstance();
4565cim.registerContextInfoRetriever("retrieverName", cir);
4566----
4567--
4568
4569. Before exiting the application, remove your context information
4570 retriever from the context information manager singleton:
4571+
4572--
4573[source,java]
4574----
4575ContextInfoManager cim = ContextInfoManager.getInstance();
4576cim.unregisterContextInfoRetriever("retrieverName");
4577----
4578--
4579+
4580This is not strictly necessary, but it is recommended for a clean
4581disposal of some manager's resources.
4582
4583. Build your Java application with LTTng-UST Java agent support as
4584 usual, following the procedure for either the <<jul,JUL>> or
4585 <<log4j,Apache log4j>> framework.
4586
4587
4588.Provide application-specific context fields in a Java application.
4589====
4590[source,java]
4591.path:{Test.java}
4592----
4593import java.util.logging.Handler;
4594import java.util.logging.Logger;
4595import org.lttng.ust.agent.jul.LttngLogHandler;
4596import org.lttng.ust.agent.context.ContextInfoManager;
4597import org.lttng.ust.agent.context.IContextInfoRetriever;
4598
4599public class Test
4600{
4601 // Our context information retriever class
4602 private static class MyContextInfoRetriever
4603 implements IContextInfoRetriever
4604 {
4605 @Override
4606 public Object retrieveContextInfo(String key) {
4607 if (key.equals("intCtx")) {
4608 return (short) 17;
4609 } else if (key.equals("strContext")) {
4610 return "context value!";
4611 } else {
4612 return null;
4613 }
4614 }
4615 }
4616
4617 private static final int answer = 42;
4618
4619 public static void main(String args[]) throws Exception
4620 {
4621 // Get the context information manager instance
4622 ContextInfoManager cim = ContextInfoManager.getInstance();
4623
4624 // Create and register our context information retriever
4625 IContextInfoRetriever cir = new MyContextInfoRetriever();
4626 cim.registerContextInfoRetriever("myRetriever", cir);
4627
4628 // Create a logger
4629 Logger logger = Logger.getLogger("jello");
4630
4631 // Create an LTTng-UST log handler
4632 Handler lttngUstLogHandler = new LttngLogHandler();
4633
4634 // Add the LTTng-UST log handler to our logger
4635 logger.addHandler(lttngUstLogHandler);
4636
4637 // Log at will!
4638 logger.info("some info");
4639 logger.warning("some warning");
4640 Thread.sleep(500);
4641 logger.finer("finer information; the answer is " + answer);
4642 Thread.sleep(123);
4643 logger.severe("error!");
4644
4645 // Not mandatory, but cleaner
4646 logger.removeHandler(lttngUstLogHandler);
4647 lttngUstLogHandler.close();
4648 cim.unregisterContextInfoRetriever("myRetriever");
4649 }
4650}
4651----
4652
4653Build this example:
4654
4655[role="term"]
4656----
4657javac -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-jul.jar Test.java
4658----
4659
4660<<creating-destroying-tracing-sessions,Create a tracing session>>
4661and <<enabling-disabling-events,create an event rule>> matching the
4662`jello` JUL logger:
4663
4664[role="term"]
4665----
4666lttng create
4667lttng enable-event --jul jello
4668----
4669
4670<<adding-context,Add the application-specific context fields>> to the
4671JUL channel:
4672
4673[role="term"]
4674----
4675lttng add-context --jul --type='$app.myRetriever:intCtx'
4676lttng add-context --jul --type='$app.myRetriever:strContext'
4677----
4678
4679<<basic-tracing-session-control,Start tracing>>:
4680
4681[role="term"]
4682----
4683lttng start
4684----
4685
4686Run the compiled class:
4687
4688[role="term"]
4689----
4690java -cp /usr/share/java/jarpath/lttng-ust-agent-common.jar:/usr/share/java/jarpath/lttng-ust-agent-jul.jar:. Test
4691----
4692
4693<<basic-tracing-session-control,Stop tracing>> and inspect the
4694recorded events:
4695
4696[role="term"]
4697----
4698lttng stop
4699lttng view
4700----
4701====
4702
4703
4704[role="since-2.7"]
4705[[python-application]]
4706=== User space Python agent
4707
4708You can instrument a Python 2 or Python 3 application which uses the
4709standard https://docs.python.org/3/library/logging.html[`logging`]
4710package.
4711
4712Each log statement emits an LTTng event once the
4713application module imports the
4714<<lttng-ust-agents,LTTng-UST Python agent>> package.
4715
4716[role="img-100"]
4717.A Python application importing the LTTng-UST Python agent.
4718image::python-app.png[]
4719
4720To use the LTTng-UST Python agent:
4721
4722. In the Python application's source code, import the LTTng-UST Python
4723 agent:
4724+
4725--
4726[source,python]
4727----
4728import lttngust
4729----
4730--
4731+
4732The LTTng-UST Python agent automatically adds its logging handler to the
4733root logger at import time.
4734+
4735Any log statement that the application executes before this import does
4736not emit an LTTng event.
4737+
4738IMPORTANT: The LTTng-UST Python agent must be
4739<<installing-lttng,installed>>.
4740
4741. Use log statements and logging configuration as usual.
4742 Since the LTTng-UST Python agent adds a handler to the _root_
4743 logger, you can trace any log statement from any logger.
4744
4745.Use the LTTng-UST Python agent.
4746====
4747[source,python]
4748.path:{test.py}
4749----
4750import lttngust
4751import logging
4752import time
4753
4754
4755def example():
4756 logging.basicConfig()
4757 logger = logging.getLogger('my-logger')
4758
4759 while True:
4760 logger.debug('debug message')
4761 logger.info('info message')
4762 logger.warn('warn message')
4763 logger.error('error message')
4764 logger.critical('critical message')
4765 time.sleep(1)
4766
4767
4768if __name__ == '__main__':
4769 example()
4770----
4771
4772NOTE: `logging.basicConfig()`, which adds to the root logger a basic
4773logging handler which prints to the standard error stream, is not
4774strictly required for LTTng-UST tracing to work, but in versions of
4775Python preceding 3.2, you could see a warning message which indicates
4776that no handler exists for the logger `my-logger`.
4777
4778<<creating-destroying-tracing-sessions,Create a tracing session>>,
4779<<enabling-disabling-events,create an event rule>> matching the
4780`my-logger` Python logger, and <<basic-tracing-session-control,start
4781tracing>>:
4782
4783[role="term"]
4784----
4785lttng create
4786lttng enable-event --python my-logger
4787lttng start
4788----
4789
4790Run the Python script:
4791
4792[role="term"]
4793----
4794python test.py
4795----
4796
4797<<basic-tracing-session-control,Stop tracing>> and inspect the recorded
4798events:
4799
4800[role="term"]
4801----
4802lttng stop
4803lttng view
4804----
4805====
4806
4807You can use the opt:lttng-enable-event(1):--loglevel or
4808opt:lttng-enable-event(1):--loglevel-only option of the
4809man:lttng-enable-event(1) command to target a range of Python log levels
4810or a specific Python log level.
4811
4812When an application imports the LTTng-UST Python agent, the agent tries
4813to register to a <<lttng-sessiond,session daemon>>. Note that you must
4814<<start-sessiond,start the session daemon>> _before_ you run the Python
4815application. If a session daemon is found, the agent tries to register
4816to it during 5{nbsp}seconds, after which the application continues
4817without LTTng tracing support. You can override this timeout value with
4818the env:LTTNG_UST_PYTHON_REGISTER_TIMEOUT environment variable
4819(milliseconds).
4820
4821If the session daemon stops while a Python application with an imported
4822LTTng-UST Python agent runs, the agent retries to connect and to
4823register to a session daemon every 3{nbsp}seconds. You can override this
4824delay with the env:LTTNG_UST_PYTHON_REGISTER_RETRY_DELAY environment
4825variable.
4826
4827
4828[role="since-2.5"]
4829[[proc-lttng-logger-abi]]
4830=== LTTng logger
4831
4832The `lttng-tracer` Linux kernel module, part of
4833<<lttng-modules,LTTng-modules>>, creates the special LTTng logger file
4834path:{/proc/lttng-logger} when it's loaded. Any application can write
4835text data to this file to emit an LTTng event.
4836
4837[role="img-100"]
4838.An application writes to the LTTng logger file to emit an LTTng event.
4839image::lttng-logger.png[]
4840
4841The LTTng logger is the quickest method--not the most efficient,
4842however--to add instrumentation to an application. It is designed
4843mostly to instrument shell scripts:
4844
4845[role="term"]
4846----
4847echo "Some message, some $variable" > /proc/lttng-logger
4848----
4849
4850Any event that the LTTng logger emits is named `lttng_logger` and
4851belongs to the Linux kernel <<domain,tracing domain>>. However, unlike
4852other instrumentation points in the kernel tracing domain, **any Unix
4853user** can <<enabling-disabling-events,create an event rule>> which
4854matches its event name, not only the root user or users in the tracing
4855group.
4856
4857To use the LTTng logger:
4858
4859* From any application, write text data to the path:{/proc/lttng-logger}
4860 file.
4861
4862The `msg` field of `lttng_logger` event records contains the
4863recorded message.
4864
4865NOTE: The maximum message length of an LTTng logger event is
48661024{nbsp}bytes. Writing more than this makes the LTTng logger emit more
4867than one event to contain the remaining data.
4868
4869You should not use the LTTng logger to trace a user application which
4870can be instrumented in a more efficient way, namely:
4871
4872* <<c-application,C and $$C++$$ applications>>.
4873* <<java-application,Java applications>>.
4874* <<python-application,Python applications>>.
4875
4876.Use the LTTng logger.
4877====
4878[source,bash]
4879.path:{test.bash}
4880----
4881echo 'Hello, World!' > /proc/lttng-logger
4882sleep 2
4883df --human-readable --print-type / > /proc/lttng-logger
4884----
4885
4886<<creating-destroying-tracing-sessions,Create a tracing session>>,
4887<<enabling-disabling-events,create an event rule>> matching the
4888`lttng_logger` Linux kernel tracepoint, and
4889<<basic-tracing-session-control,start tracing>>:
4890
4891[role="term"]
4892----
4893lttng create
4894lttng enable-event --kernel lttng_logger
4895lttng start
4896----
4897
4898Run the Bash script:
4899
4900[role="term"]
4901----
4902bash test.bash
4903----
4904
4905<<basic-tracing-session-control,Stop tracing>> and inspect the recorded
4906events:
4907
4908[role="term"]
4909----
4910lttng stop
4911lttng view
4912----
4913====
4914
4915
4916[[instrumenting-linux-kernel]]
4917=== LTTng kernel tracepoints
4918
4919NOTE: This section shows how to _add_ instrumentation points to the
4920Linux kernel. The kernel's subsystems are already thoroughly
4921instrumented at strategic places for LTTng when you
4922<<installing-lttng,install>> the <<lttng-modules,LTTng-modules>>
4923package.
4924
4925////
4926There are two methods to instrument the Linux kernel:
4927
4928. <<linux-add-lttng-layer,Add an LTTng layer>> over an existing ftrace
4929 tracepoint which uses the `TRACE_EVENT()` API.
4930+
4931Choose this if you want to instrumentation a Linux kernel tree with an
4932instrumentation point compatible with ftrace, perf, and SystemTap.
4933
4934. Use an <<linux-lttng-tracepoint-event,LTTng-only approach>> to
4935 instrument an out-of-tree kernel module.
4936+
4937Choose this if you don't need ftrace, perf, or SystemTap support.
4938////
4939
4940
4941[[linux-add-lttng-layer]]
4942==== [[instrumenting-linux-kernel-itself]][[mainline-trace-event]][[lttng-adaptation-layer]]Add an LTTng layer to an existing ftrace tracepoint
4943
4944This section shows how to add an LTTng layer to existing ftrace
4945instrumentation using the `TRACE_EVENT()` API.
4946
4947This section does not document the `TRACE_EVENT()` macro. You can
4948read the following articles to learn more about this API:
4949
4950* http://lwn.net/Articles/379903/[Using the TRACE_EVENT() macro (Part 1)]
4951* http://lwn.net/Articles/381064/[Using the TRACE_EVENT() macro (Part 2)]
4952* http://lwn.net/Articles/383362/[Using the TRACE_EVENT() macro (Part 3)]
4953
4954The following procedure assumes that your ftrace tracepoints are
4955correctly defined in their own header and that they are created in
4956one source file using the `CREATE_TRACE_POINTS` definition.
4957
4958To add an LTTng layer over an existing ftrace tracepoint:
4959
4960. Make sure the following kernel configuration options are
4961 enabled:
4962+
4963--
4964* `CONFIG_MODULES`
4965* `CONFIG_KALLSYMS`
4966* `CONFIG_HIGH_RES_TIMERS`
4967* `CONFIG_TRACEPOINTS`
4968--
4969
4970. Build the Linux source tree with your custom ftrace tracepoints.
4971. Boot the resulting Linux image on your target system.
4972+
4973Confirm that the tracepoints exist by looking for their names in the
4974dir:{/sys/kernel/debug/tracing/events/subsys} directory, where `subsys`
4975is your subsystem's name.
4976
4977. Get a copy of the latest LTTng-modules{nbsp}{revision}:
4978+
4979--
4980[role="term"]
4981----
4982cd $(mktemp -d) &&
4983wget http://lttng.org/files/lttng-modules/lttng-modules-latest-2.9.tar.bz2 &&
4984tar -xf lttng-modules-latest-2.9.tar.bz2 &&
4985cd lttng-modules-2.9.*
4986----
4987--
4988
4989. In dir:{instrumentation/events/lttng-module}, relative to the root
4990 of the LTTng-modules source tree, create a header file named
4991 +__subsys__.h+ for your custom subsystem +__subsys__+ and write your
4992 LTTng-modules tracepoint definitions using the LTTng-modules
4993 macros in it.
4994+
4995Start with this template:
4996+
4997--
4998[source,c]
4999.path:{instrumentation/events/lttng-module/my_subsys.h}
5000----
5001#undef TRACE_SYSTEM
5002#define TRACE_SYSTEM my_subsys
5003
5004#if !defined(_LTTNG_MY_SUBSYS_H) || defined(TRACE_HEADER_MULTI_READ)
5005#define _LTTNG_MY_SUBSYS_H
5006
5007#include "../../../probes/lttng-tracepoint-event.h"
5008#include <linux/tracepoint.h>
5009
5010LTTNG_TRACEPOINT_EVENT(
5011 /*
5012 * Format is identical to TRACE_EVENT()'s version for the three
5013 * following macro parameters:
5014 */
5015 my_subsys_my_event,
5016 TP_PROTO(int my_int, const char *my_string),
5017 TP_ARGS(my_int, my_string),
5018
5019 /* LTTng-modules specific macros */
5020 TP_FIELDS(
5021 ctf_integer(int, my_int_field, my_int)
5022 ctf_string(my_bar_field, my_bar)
5023 )
5024)
5025
5026#endif /* !defined(_LTTNG_MY_SUBSYS_H) || defined(TRACE_HEADER_MULTI_READ) */
5027
5028#include "../../../probes/define_trace.h"
5029----
5030--
5031+
5032The entries in the `TP_FIELDS()` section are the list of fields for the
5033LTTng tracepoint. This is similar to the `TP_STRUCT__entry()` part of
5034ftrace's `TRACE_EVENT()` macro.
5035+
5036See <<lttng-modules-tp-fields,Tracepoint fields macros>> for a
5037complete description of the available `ctf_*()` macros.
5038
5039. Create the LTTng-modules probe's kernel module C source file,
5040 +probes/lttng-probe-__subsys__.c+, where +__subsys__+ is your
5041 subsystem name:
5042+
5043--
5044[source,c]
5045.path:{probes/lttng-probe-my-subsys.c}
5046----
5047#include <linux/module.h>
5048#include "../lttng-tracer.h"
5049
5050/*
5051 * Build-time verification of mismatch between mainline
5052 * TRACE_EVENT() arguments and the LTTng-modules adaptation
5053 * layer LTTNG_TRACEPOINT_EVENT() arguments.
5054 */
5055#include <trace/events/my_subsys.h>
5056
5057/* Create LTTng tracepoint probes */
5058#define LTTNG_PACKAGE_BUILD
5059#define CREATE_TRACE_POINTS
5060#define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module
5061
5062#include "../instrumentation/events/lttng-module/my_subsys.h"
5063
5064MODULE_LICENSE("GPL and additional rights");
5065MODULE_AUTHOR("Your name <your-email>");
5066MODULE_DESCRIPTION("LTTng my_subsys probes");
5067MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
5068 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
5069 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
5070 LTTNG_MODULES_EXTRAVERSION);
5071----
5072--
5073
5074. Edit path:{probes/Makefile} and add your new kernel module object
5075 next to the existing ones:
5076+
5077--
5078[source,make]
5079.path:{probes/Makefile}
5080----
5081# ...
5082
5083obj-m += lttng-probe-module.o
5084obj-m += lttng-probe-power.o
5085
5086obj-m += lttng-probe-my-subsys.o
5087
5088# ...
5089----
5090--
5091
5092. Build and install the LTTng kernel modules:
5093+
5094--
5095[role="term"]
5096----
5097make KERNELDIR=/path/to/linux
5098sudo make modules_install
5099----
5100--
5101+
5102Replace `/path/to/linux` with the path to the Linux source tree where
5103you defined and used tracepoints with ftrace's `TRACE_EVENT()` macro.
5104
5105Note that you can also use the
5106<<lttng-tracepoint-event-code,`LTTNG_TRACEPOINT_EVENT_CODE()` macro>>
5107instead of `LTTNG_TRACEPOINT_EVENT()` to use custom local variables and
5108C code that need to be executed before the event fields are recorded.
5109
5110The best way to learn how to use the previous LTTng-modules macros is to
5111inspect the existing LTTng-modules tracepoint definitions in the
5112dir:{instrumentation/events/lttng-module} header files. Compare them
5113with the Linux kernel mainline versions in the
5114dir:{include/trace/events} directory of the Linux source tree.
5115
5116
5117[role="since-2.7"]
5118[[lttng-tracepoint-event-code]]
5119===== Use custom C code to access the data for tracepoint fields
5120
5121Although we recommended to always use the
5122<<lttng-adaptation-layer,`LTTNG_TRACEPOINT_EVENT()`>> macro to describe
5123the arguments and fields of an LTTng-modules tracepoint when possible,
5124sometimes you need a more complex process to access the data that the
5125tracer records as event record fields. In other words, you need local
5126variables and multiple C{nbsp}statements instead of simple
5127argument-based expressions that you pass to the
5128<<lttng-modules-tp-fields,`ctf_*()` macros of `TP_FIELDS()`>>.
5129
5130You can use the `LTTNG_TRACEPOINT_EVENT_CODE()` macro instead of
5131`LTTNG_TRACEPOINT_EVENT()` to declare custom local variables and define
5132a block of C{nbsp}code to be executed before LTTng records the fields.
5133The structure of this macro is:
5134
5135[source,c]
5136.`LTTNG_TRACEPOINT_EVENT_CODE()` macro syntax.
5137----
5138LTTNG_TRACEPOINT_EVENT_CODE(
5139 /*
5140 * Format identical to the LTTNG_TRACEPOINT_EVENT()
5141 * version for the following three macro parameters:
5142 */
5143 my_subsys_my_event,
5144 TP_PROTO(int my_int, const char *my_string),
5145 TP_ARGS(my_int, my_string),
5146
5147 /* Declarations of custom local variables */
5148 TP_locvar(
5149 int a = 0;
5150 unsigned long b = 0;
5151 const char *name = "(undefined)";
5152 struct my_struct *my_struct;
5153 ),
5154
5155 /*
5156 * Custom code which uses both tracepoint arguments
5157 * (in TP_ARGS()) and local variables (in TP_locvar()).
5158 *
5159 * Local variables are actually members of a structure pointed
5160 * to by the special variable tp_locvar.
5161 */
5162 TP_code(
5163 if (my_int) {
5164 tp_locvar->a = my_int + 17;
5165 tp_locvar->my_struct = get_my_struct_at(tp_locvar->a);
5166 tp_locvar->b = my_struct_compute_b(tp_locvar->my_struct);
5167 tp_locvar->name = my_struct_get_name(tp_locvar->my_struct);
5168 put_my_struct(tp_locvar->my_struct);
5169
5170 if (tp_locvar->b) {
5171 tp_locvar->a = 1;
5172 }
5173 }
5174 ),
5175
5176 /*
5177 * Format identical to the LTTNG_TRACEPOINT_EVENT()
5178 * version for this, except that tp_locvar members can be
5179 * used in the argument expression parameters of
5180 * the ctf_*() macros.
5181 */
5182 TP_FIELDS(
5183 ctf_integer(unsigned long, my_struct_b, tp_locvar->b)
5184 ctf_integer(int, my_struct_a, tp_locvar->a)
5185 ctf_string(my_string_field, my_string)
5186 ctf_string(my_struct_name, tp_locvar->name)
5187 )
5188)
5189----
5190
5191IMPORTANT: The C code defined in `TP_code()` must not have any side
5192effects when executed. In particular, the code must not allocate
5193memory or get resources without deallocating this memory or putting
5194those resources afterwards.
5195
5196
5197[[instrumenting-linux-kernel-tracing]]
5198==== Load and unload a custom probe kernel module
5199
5200You must load a <<lttng-adaptation-layer,created LTTng-modules probe
5201kernel module>> in the kernel before it can emit LTTng events.
5202
5203To load the default probe kernel modules and a custom probe kernel
5204module:
5205
5206* Use the opt:lttng-sessiond(8):--extra-kmod-probes option to give extra
5207 probe modules to load when starting a root <<lttng-sessiond,session
5208 daemon>>:
5209+
5210--
5211.Load the `my_subsys`, `usb`, and the default probe modules.
5212====
5213[role="term"]
5214----
5215sudo lttng-sessiond --extra-kmod-probes=my_subsys,usb
5216----
5217====
5218--
5219+
5220You only need to pass the subsystem name, not the whole kernel module
5221name.
5222
5223To load _only_ a given custom probe kernel module:
5224
5225* Use the opt:lttng-sessiond(8):--kmod-probes option to give the probe
5226 modules to load when starting a root session daemon:
5227+
5228--
5229.Load only the `my_subsys` and `usb` probe modules.
5230====
5231[role="term"]
5232----
5233sudo lttng-sessiond --kmod-probes=my_subsys,usb
5234----
5235====
5236--
5237
5238To confirm that a probe module is loaded:
5239
5240* Use man:lsmod(8):
5241+
5242--
5243[role="term"]
5244----
5245lsmod | grep lttng_probe_usb
5246----
5247--
5248
5249To unload the loaded probe modules:
5250
5251* Kill the session daemon with `SIGTERM`:
5252+
5253--
5254[role="term"]
5255----
5256sudo pkill lttng-sessiond
5257----
5258--
5259+
5260You can also use man:modprobe(8)'s `--remove` option if the session
5261daemon terminates abnormally.
5262
5263
5264[[controlling-tracing]]
5265== Tracing control
5266
5267Once an application or a Linux kernel is
5268<<instrumenting,instrumented>> for LTTng tracing,
5269you can _trace_ it.
5270
5271This section is divided in topics on how to use the various
5272<<plumbing,components of LTTng>>, in particular the <<lttng-cli,cmd:lttng
5273command-line tool>>, to _control_ the LTTng daemons and tracers.
5274
5275NOTE: In the following subsections, we refer to an man:lttng(1) command
5276using its man page name. For example, instead of _Run the `create`
5277command to..._, we use _Run the man:lttng-create(1) command to..._.
5278
5279
5280[[start-sessiond]]
5281=== Start a session daemon
5282
5283In some situations, you need to run a <<lttng-sessiond,session daemon>>
5284(man:lttng-sessiond(8)) _before_ you can use the man:lttng(1)
5285command-line tool.
5286
5287You will see the following error when you run a command while no session
5288daemon is running:
5289
5290----
5291Error: No session daemon is available
5292----
5293
5294The only command that automatically runs a session daemon is
5295man:lttng-create(1), which you use to
5296<<creating-destroying-tracing-sessions,create a tracing session>>. While
5297this is most of the time the first operation that you do, sometimes it's
5298not. Some examples are:
5299
5300* <<list-instrumentation-points,List the available instrumentation points>>.
5301* <<saving-loading-tracing-session,Load a tracing session configuration>>.
5302
5303[[tracing-group]] Each Unix user must have its own running session
5304daemon to trace user applications. The session daemon that the root user
5305starts is the only one allowed to control the LTTng kernel tracer. Users
5306that are part of the _tracing group_ can control the root session
5307daemon. The default tracing group name is `tracing`; you can set it to
5308something else with the opt:lttng-sessiond(8):--group option when you
5309start the root session daemon.
5310
5311To start a user session daemon:
5312
5313* Run man:lttng-sessiond(8):
5314+
5315--
5316[role="term"]
5317----
5318lttng-sessiond --daemonize
5319----
5320--
5321
5322To start the root session daemon:
5323
5324* Run man:lttng-sessiond(8) as the root user:
5325+
5326--
5327[role="term"]
5328----
5329sudo lttng-sessiond --daemonize
5330----
5331--
5332
5333In both cases, remove the opt:lttng-sessiond(8):--daemonize option to
5334start the session daemon in foreground.
5335
5336To stop a session daemon, use man:kill(1) on its process ID (standard
5337`TERM` signal).
5338
5339Note that some Linux distributions could manage the LTTng session daemon
5340as a service. In this case, you should use the service manager to
5341start, restart, and stop session daemons.
5342
5343
5344[[creating-destroying-tracing-sessions]]
5345=== Create and destroy a tracing session
5346
5347Almost all the LTTng control operations happen in the scope of
5348a <<tracing-session,tracing session>>, which is the dialogue between the
5349<<lttng-sessiond,session daemon>> and you.
5350
5351To create a tracing session with a generated name:
5352
5353* Use the man:lttng-create(1) command:
5354+
5355--
5356[role="term"]
5357----
5358lttng create
5359----
5360--
5361
5362The created tracing session's name is `auto` followed by the
5363creation date.
5364
5365To create a tracing session with a specific name:
5366
5367* Use the optional argument of the man:lttng-create(1) command:
5368+
5369--
5370[role="term"]
5371----
5372lttng create my-session
5373----
5374--
5375+
5376Replace `my-session` with the specific tracing session name.
5377
5378LTTng appends the creation date to the created tracing session's name.
5379
5380LTTng writes the traces of a tracing session in
5381+$LTTNG_HOME/lttng-trace/__name__+ by default, where +__name__+ is the
5382name of the tracing session. Note that the env:LTTNG_HOME environment
5383variable defaults to `$HOME` if not set.
5384
5385To output LTTng traces to a non-default location:
5386
5387* Use the opt:lttng-create(1):--output option of the man:lttng-create(1) command:
5388+
5389--
5390[role="term"]
5391----
5392lttng create --output=/tmp/some-directory my-session
5393----
5394--
5395
5396You may create as many tracing sessions as you wish.
5397
5398To list all the existing tracing sessions for your Unix user:
5399
5400* Use the man:lttng-list(1) command:
5401+
5402--
5403[role="term"]
5404----
5405lttng list
5406----
5407--
5408
5409When you create a tracing session, it is set as the _current tracing
5410session_. The following man:lttng(1) commands operate on the current
5411tracing session when you don't specify one:
5412
5413[role="list-3-cols"]
5414* `add-context`
5415* `destroy`
5416* `disable-channel`
5417* `disable-event`
5418* `enable-channel`
5419* `enable-event`
5420* `load`
5421* `regenerate`
5422* `save`
5423* `snapshot`
5424* `start`
5425* `stop`
5426* `track`
5427* `untrack`
5428* `view`
5429
5430To change the current tracing session:
5431
5432* Use the man:lttng-set-session(1) command:
5433+
5434--
5435[role="term"]
5436----
5437lttng set-session new-session
5438----
5439--
5440+
5441Replace `new-session` by the name of the new current tracing session.
5442
5443When you are done tracing in a given tracing session, you can destroy
5444it. This operation frees the resources taken by the tracing session
5445to destroy; it does not destroy the trace data that LTTng wrote for
5446this tracing session.
5447
5448To destroy the current tracing session:
5449
5450* Use the man:lttng-destroy(1) command:
5451+
5452--
5453[role="term"]
5454----
5455lttng destroy
5456----
5457--
5458
5459
5460[[list-instrumentation-points]]
5461=== List the available instrumentation points
5462
5463The <<lttng-sessiond,session daemon>> can query the running instrumented
5464user applications and the Linux kernel to get a list of available
5465instrumentation points. For the Linux kernel <<domain,tracing domain>>,
5466they are tracepoints and system calls. For the user space tracing
5467domain, they are tracepoints. For the other tracing domains, they are
5468logger names.
5469
5470To list the available instrumentation points:
5471
5472* Use the man:lttng-list(1) command with the requested tracing domain's
5473 option amongst:
5474+
5475--
5476* opt:lttng-list(1):--kernel: Linux kernel tracepoints (your Unix user
5477 must be a root user, or it must be a member of the
5478 <<tracing-group,tracing group>>).
5479* opt:lttng-list(1):--kernel with opt:lttng-list(1):--syscall: Linux
5480 kernel system calls (your Unix user must be a root user, or it must be
5481 a member of the tracing group).
5482* opt:lttng-list(1):--userspace: user space tracepoints.
5483* opt:lttng-list(1):--jul: `java.util.logging` loggers.
5484* opt:lttng-list(1):--log4j: Apache log4j loggers.
5485* opt:lttng-list(1):--python: Python loggers.
5486--
5487
5488.List the available user space tracepoints.
5489====
5490[role="term"]
5491----
5492lttng list --userspace
5493----
5494====
5495
5496.List the available Linux kernel system call tracepoints.
5497====
5498[role="term"]
5499----
5500lttng list --kernel --syscall
5501----
5502====
5503
5504
5505[[enabling-disabling-events]]
5506=== Create and enable an event rule
5507
5508Once you <<creating-destroying-tracing-sessions,create a tracing
5509session>>, you can create <<event,event rules>> with the
5510man:lttng-enable-event(1) command.
5511
5512You specify each condition with a command-line option. The available
5513condition options are shown in the following table.
5514
5515[role="growable",cols="asciidoc,asciidoc,default"]
5516.Condition command-line options for the man:lttng-enable-event(1) command.
5517|====
5518|Option |Description |Applicable tracing domains
5519
5520|
5521One of:
5522
5523. `--syscall`
5524. +--probe=__ADDR__+
5525. +--function=__ADDR__+
5526
5527|
5528Instead of using the default _tracepoint_ instrumentation type, use:
5529
5530. A Linux system call.
5531. A Linux https://lwn.net/Articles/132196/[KProbe] (symbol or address).
5532. The entry and return points of a Linux function (symbol or address).
5533
5534|Linux kernel.
5535
5536|First positional argument.
5537
5538|
5539Tracepoint or system call name. In the case of a Linux KProbe or
5540function, this is a custom name given to the event rule. With the
5541JUL, log4j, and Python domains, this is a logger name.
5542
5543With a tracepoint, logger, or system call name, the last character
5544can be `*` to match anything that remains.
5545
5546|All.
5547
5548|
5549One of:
5550
5551. +--loglevel=__LEVEL__+
5552. +--loglevel-only=__LEVEL__+
5553
5554|
5555. Match only tracepoints or log statements with a logging level at
5556 least as severe as +__LEVEL__+.
5557. Match only tracepoints or log statements with a logging level
5558 equal to +__LEVEL__+.
5559
5560See man:lttng-enable-event(1) for the list of available logging level
5561names.
5562
5563|User space, JUL, log4j, and Python.
5564
5565|+--exclude=__EXCLUSIONS__+
5566
5567|
5568When you use a `*` character at the end of the tracepoint or logger
5569name (first positional argument), exclude the specific names in the
5570comma-delimited list +__EXCLUSIONS__+.
5571
5572|
5573User space, JUL, log4j, and Python.
5574
5575|+--filter=__EXPR__+
5576
5577|
5578Match only events which satisfy the expression +__EXPR__+.
5579
5580See man:lttng-enable-event(1) to learn more about the syntax of a
5581filter expression.
5582
5583|All.
5584
5585|====
5586
5587You attach an event rule to a <<channel,channel>> on creation. If you do
5588not specify the channel with the opt:lttng-enable-event(1):--channel
5589option, and if the event rule to create is the first in its
5590<<domain,tracing domain>> for a given tracing session, then LTTng
5591creates a _default channel_ for you. This default channel is reused in
5592subsequent invocations of the man:lttng-enable-event(1) command for the
5593same tracing domain.
5594
5595An event rule is always enabled at creation time.
5596
5597The following examples show how you can combine the previous
5598command-line options to create simple to more complex event rules.
5599
5600.Create an event rule targetting a Linux kernel tracepoint (default channel).
5601====
5602[role="term"]
5603----
5604lttng enable-event --kernel sched_switch
5605----
5606====
5607
5608.Create an event rule matching four Linux kernel system calls (default channel).
5609====
5610[role="term"]
5611----
5612lttng enable-event --kernel --syscall open,write,read,close
5613----
5614====
5615
5616.Create event rules matching tracepoints with filter expressions (default channel).
5617====
5618[role="term"]
5619----
5620lttng enable-event --kernel sched_switch --filter='prev_comm == "bash"'
5621----
5622
5623[role="term"]
5624----
5625lttng enable-event --kernel --all \
5626 --filter='$ctx.tid == 1988 || $ctx.tid == 1534'
5627----
5628
5629[role="term"]
5630----
5631lttng enable-event --jul my_logger \
5632 --filter='$app.retriever:cur_msg_id > 3'
5633----
5634
5635IMPORTANT: Make sure to always quote the filter string when you
5636use man:lttng(1) from a shell.
5637====
5638
5639.Create an event rule matching any user space tracepoint of a given tracepoint provider with a log level range (default channel).
5640====
5641[role="term"]
5642----
5643lttng enable-event --userspace my_app:'*' --loglevel=TRACE_INFO
5644----
5645
5646IMPORTANT: Make sure to always quote the wildcard character when you
5647use man:lttng(1) from a shell.
5648====
5649
5650.Create an event rule matching multiple Python loggers with a wildcard and with exclusions (default channel).
5651====
5652[role="term"]
5653----
5654lttng enable-event --python my-app.'*' \
5655 --exclude='my-app.module,my-app.hello'
5656----
5657====
5658
5659.Create an event rule matching any Apache log4j logger with a specific log level (default channel).
5660====
5661[role="term"]
5662----
5663lttng enable-event --log4j --all --loglevel-only=LOG4J_WARN
5664----
5665====
5666
5667.Create an event rule attached to a specific channel matching a specific user space tracepoint provider and tracepoint.
5668====
5669[role="term"]
5670----
5671lttng enable-event --userspace my_app:my_tracepoint --channel=my-channel
5672----
5673====
5674
5675The event rules of a given channel form a whitelist: as soon as an
5676emitted event passes one of them, LTTng can record the event. For
5677example, an event named `my_app:my_tracepoint` emitted from a user space
5678tracepoint with a `TRACE_ERROR` log level passes both of the following
5679rules:
5680
5681[role="term"]
5682----
5683lttng enable-event --userspace my_app:my_tracepoint
5684lttng enable-event --userspace my_app:my_tracepoint \
5685 --loglevel=TRACE_INFO
5686----
5687
5688The second event rule is redundant: the first one includes
5689the second one.
5690
5691
5692[[disable-event-rule]]
5693=== Disable an event rule
5694
5695To disable an event rule that you <<enabling-disabling-events,created>>
5696previously, use the man:lttng-disable-event(1) command. This command
5697disables _all_ the event rules (of a given tracing domain and channel)
5698which match an instrumentation point. The other conditions are not
5699supported as of LTTng{nbsp}{revision}.
5700
5701The LTTng tracer does not record an emitted event which passes
5702a _disabled_ event rule.
5703
5704.Disable an event rule matching a Python logger (default channel).
5705====
5706[role="term"]
5707----
5708lttng disable-event --python my-logger
5709----
5710====
5711
5712.Disable an event rule matching all `java.util.logging` loggers (default channel).
5713====
5714[role="term"]
5715----
5716lttng disable-event --jul '*'
5717----
5718====
5719
5720.Disable _all_ the event rules of the default channel.
5721====
5722The opt:lttng-disable-event(1):--all-events option is not, like the
5723opt:lttng-enable-event(1):--all option of man:lttng-enable-event(1), the
5724equivalent of the event name `*` (wildcard): it disables _all_ the event
5725rules of a given channel.
5726
5727[role="term"]
5728----
5729lttng disable-event --jul --all-events
5730----
5731====
5732
5733NOTE: You cannot delete an event rule once you create it.
5734
5735
5736[[status]]
5737=== Get the status of a tracing session
5738
5739To get the status of the current tracing session, that is, its
5740parameters, its channels, event rules, and their attributes:
5741
5742* Use the man:lttng-status(1) command:
5743+
5744--
5745[role="term"]
5746----
5747lttng status
5748----
5749--
5750+
5751
5752To get the status of any tracing session:
5753
5754* Use the man:lttng-list(1) command with the tracing session's name:
5755+
5756--
5757[role="term"]
5758----
5759lttng list my-session
5760----
5761--
5762+
5763Replace `my-session` with the desired tracing session's name.
5764
5765
5766[[basic-tracing-session-control]]
5767=== Start and stop a tracing session
5768
5769Once you <<creating-destroying-tracing-sessions,create a tracing
5770session>> and
5771<<enabling-disabling-events,create one or more event rules>>,
5772you can start and stop the tracers for this tracing session.
5773
5774To start tracing in the current tracing session:
5775
5776* Use the man:lttng-start(1) command:
5777+
5778--
5779[role="term"]
5780----
5781lttng start
5782----
5783--
5784
5785LTTng is very flexible: you can launch user applications before
5786or after the you start the tracers. The tracers only record the events
5787if they pass enabled event rules and if they occur while the tracers are
5788started.
5789
5790To stop tracing in the current tracing session:
5791
5792* Use the man:lttng-stop(1) command:
5793+
5794--
5795[role="term"]
5796----
5797lttng stop
5798----
5799--
5800+
5801If there were <<channel-overwrite-mode-vs-discard-mode,lost event
5802records>> or lost sub-buffers since the last time you ran
5803man:lttng-start(1), warnings are printed when you run the
5804man:lttng-stop(1) command.
5805
5806
5807[[enabling-disabling-channels]]
5808=== Create a channel
5809
5810Once you create a tracing session, you can create a <<channel,channel>>
5811with the man:lttng-enable-channel(1) command.
5812
5813Note that LTTng automatically creates a default channel when, for a
5814given <<domain,tracing domain>>, no channels exist and you
5815<<enabling-disabling-events,create>> the first event rule. This default
5816channel is named `channel0` and its attributes are set to reasonable
5817values. Therefore, you only need to create a channel when you need
5818non-default attributes.
5819
5820You specify each non-default channel attribute with a command-line
5821option when you use the man:lttng-enable-channel(1) command. The
5822available command-line options are:
5823
5824[role="growable",cols="asciidoc,asciidoc"]
5825.Command-line options for the man:lttng-enable-channel(1) command.
5826|====
5827|Option |Description
5828
5829|`--overwrite`
5830
5831|
5832Use the _overwrite_
5833<<channel-overwrite-mode-vs-discard-mode,event loss mode>> instead of
5834the default _discard_ mode.
5835
5836|`--buffers-pid` (user space tracing domain only)
5837
5838|
5839Use the per-process <<channel-buffering-schemes,buffering scheme>>
5840instead of the default per-user buffering scheme.
5841
5842|+--subbuf-size=__SIZE__+
5843
5844|
5845Allocate sub-buffers of +__SIZE__+ bytes (power of two), for each CPU,
5846either for each Unix user (default), or for each instrumented process.
5847
5848See <<channel-subbuf-size-vs-subbuf-count,Sub-buffer count and size>>.
5849
5850|+--num-subbuf=__COUNT__+
5851
5852|
5853Allocate +__COUNT__+ sub-buffers (power of two), for each CPU, either
5854for each Unix user (default), or for each instrumented process.
5855
5856See <<channel-subbuf-size-vs-subbuf-count,Sub-buffer count and size>>.
5857
5858|+--tracefile-size=__SIZE__+
5859
5860|
5861Set the maximum size of each trace file that this channel writes within
5862a stream to +__SIZE__+ bytes instead of no maximum.
5863
5864See <<tracefile-rotation,Trace file count and size>>.
5865
5866|+--tracefile-count=__COUNT__+
5867
5868|
5869Limit the number of trace files that this channel creates to
5870+__COUNT__+ channels instead of no limit.
5871
5872See <<tracefile-rotation,Trace file count and size>>.
5873
5874|+--switch-timer=__PERIODUS__+
5875
5876|
5877Set the <<channel-switch-timer,switch timer period>>
5878to +__PERIODUS__+{nbsp}µs.
5879
5880|+--read-timer=__PERIODUS__+
5881
5882|
5883Set the <<channel-read-timer,read timer period>>
5884to +__PERIODUS__+{nbsp}µs.
5885
5886|+--output=__TYPE__+ (Linux kernel tracing domain only)
5887
5888|
5889Set the channel's output type to +__TYPE__+, either `mmap` or `splice`.
5890
5891|====
5892
5893You can only create a channel in the Linux kernel and user space
5894<<domain,tracing domains>>: other tracing domains have their own channel
5895created on the fly when <<enabling-disabling-events,creating event
5896rules>>.
5897
5898[IMPORTANT]
5899====
5900Because of a current LTTng limitation, you must create all channels
5901_before_ you <<basic-tracing-session-control,start tracing>> in a given
5902tracing session, that is, before the first time you run
5903man:lttng-start(1).
5904
5905Since LTTng automatically creates a default channel when you use the
5906man:lttng-enable-event(1) command with a specific tracing domain, you
5907cannot, for example, create a Linux kernel event rule, start tracing,
5908and then create a user space event rule, because no user space channel
5909exists yet and it's too late to create one.
5910
5911For this reason, make sure to configure your channels properly
5912before starting the tracers for the first time!
5913====
5914
5915The following examples show how you can combine the previous
5916command-line options to create simple to more complex channels.
5917
5918.Create a Linux kernel channel with default attributes.
5919====
5920[role="term"]
5921----
5922lttng enable-channel --kernel my-channel
5923----
5924====
5925
5926.Create a user space channel with 4 sub-buffers or 1{nbsp}MiB each, per CPU, per instrumented process.
5927====
5928[role="term"]
5929----
5930lttng enable-channel --userspace --num-subbuf=4 --subbuf-size=1M \
5931 --buffers-pid my-channel
5932----
5933====
5934
5935.Create a Linux kernel channel which rotates 8 trace files of 4{nbsp}MiB each for each stream
5936====
5937[role="term"]
5938----
5939lttng enable-channel --kernel --tracefile-count=8 \
5940 --tracefile-size=4194304 my-channel
5941----
5942====
5943
5944.Create a user space channel in overwrite (or _flight recorder_) mode.
5945====
5946[role="term"]
5947----
5948lttng enable-channel --userspace --overwrite my-channel
5949----
5950====
5951
5952You can <<enabling-disabling-events,create>> the same event rule in
5953two different channels:
5954
5955[role="term"]
5956----
5957lttng enable-event --userspace --channel=my-channel app:tp
5958lttng enable-event --userspace --channel=other-channel app:tp
5959----
5960
5961If both channels are enabled, when a tracepoint named `app:tp` is
5962reached, LTTng records two events, one for each channel.
5963
5964
5965[[disable-channel]]
5966=== Disable a channel
5967
5968To disable a specific channel that you <<enabling-disabling-channels,created>>
5969previously, use the man:lttng-disable-channel(1) command.
5970
5971.Disable a specific Linux kernel channel.
5972====
5973[role="term"]
5974----
5975lttng disable-channel --kernel my-channel
5976----
5977====
5978
5979The state of a channel precedes the individual states of event rules
5980attached to it: event rules which belong to a disabled channel, even if
5981they are enabled, are also considered disabled.
5982
5983
5984[[adding-context]]
5985=== Add context fields to a channel
5986
5987Event record fields in trace files provide important information about
5988events that occured previously, but sometimes some external context may
5989help you solve a problem faster. Examples of context fields are:
5990
5991* The **process ID**, **thread ID**, **process name**, and
5992 **process priority** of the thread in which the event occurs.
5993* The **hostname** of the system on which the event occurs.
5994* The current values of many possible **performance counters** using
5995 perf, for example:
5996** CPU cycles, stalled cycles, idle cycles, and the other cycle types.
5997** Cache misses.
5998** Branch instructions, misses, and loads.
5999** CPU faults.
6000* Any context defined at the application level (supported for the
6001 JUL and log4j <<domain,tracing domains>>).
6002
6003To get the full list of available context fields, see
6004`lttng add-context --list`. Some context fields are reserved for a
6005specific <<domain,tracing domain>> (Linux kernel or user space).
6006
6007You add context fields to <<channel,channels>>. All the events
6008that a channel with added context fields records contain those fields.
6009
6010To add context fields to one or all the channels of a given tracing
6011session:
6012
6013* Use the man:lttng-add-context(1) command.
6014
6015.Add context fields to all the channels of the current tracing session.
6016====
6017The following command line adds the virtual process identifier and
6018the per-thread CPU cycles count fields to all the user space channels
6019of the current tracing session.
6020
6021[role="term"]
6022----
6023lttng add-context --userspace --type=vpid --type=perf:thread:cpu-cycles
6024----
6025====
6026
6027.Add performance counter context fields by raw ID
6028====
6029See man:lttng-add-context(1) for the exact format of the context field
6030type, which is partly compatible with the format used in
6031man:perf-record(1).
6032
6033[role="term"]
6034----
6035lttng add-context --userspace --type=perf:thread:raw:r0110:test
6036lttng add-context --kernel --type=perf:cpu:raw:r0013c:x86unhalted
6037----
6038====
6039
6040.Add a context field to a specific channel.
6041====
6042The following command line adds the thread identifier context field
6043to the Linux kernel channel named `my-channel` in the current
6044tracing session.
6045
6046[role="term"]
6047----
6048lttng add-context --kernel --channel=my-channel --type=tid
6049----
6050====
6051
6052.Add an application-specific context field to a specific channel.
6053====
6054The following command line adds the `cur_msg_id` context field of the
6055`retriever` context retriever for all the instrumented
6056<<java-application,Java applications>> recording <<event,event records>>
6057in the channel named `my-channel`:
6058
6059[role="term"]
6060----
6061lttng add-context --kernel --channel=my-channel \
6062 --type='$app:retriever:cur_msg_id'
6063----
6064
6065IMPORTANT: Make sure to always quote the `$` character when you
6066use man:lttng-add-context(1) from a shell.
6067====
6068
6069NOTE: You cannot remove context fields from a channel once you add it.
6070
6071
6072[role="since-2.7"]
6073[[pid-tracking]]
6074=== Track process IDs
6075
6076It's often useful to allow only specific process IDs (PIDs) to emit
6077events. For example, you may wish to record all the system calls made by
6078a given process (à la http://linux.die.net/man/1/strace[strace]).
6079
6080The man:lttng-track(1) and man:lttng-untrack(1) commands serve this
6081purpose. Both commands operate on a whitelist of process IDs. You _add_
6082entries to this whitelist with the man:lttng-track(1) command and remove
6083entries with the man:lttng-untrack(1) command. Any process which has one
6084of the PIDs in the whitelist is allowed to emit LTTng events which pass
6085an enabled <<event,event rule>>.
6086
6087NOTE: The PID tracker tracks the _numeric process IDs_. Should a
6088process with a given tracked ID exit and another process be given this
6089ID, then the latter would also be allowed to emit events.
6090
6091.Track and untrack process IDs.
6092====
6093For the sake of the following example, assume the target system has 16
6094possible PIDs.
6095
6096When you
6097<<creating-destroying-tracing-sessions,create a tracing session>>,
6098the whitelist contains all the possible PIDs:
6099
6100[role="img-100"]
6101.All PIDs are tracked.
6102image::track-all.png[]
6103
6104When the whitelist is full and you use the man:lttng-track(1) command to
6105specify some PIDs to track, LTTng first clears the whitelist, then it
6106tracks the specific PIDs. After:
6107
6108[role="term"]
6109----
6110lttng track --pid=3,4,7,10,13
6111----
6112
6113the whitelist is:
6114
6115[role="img-100"]
6116.PIDs 3, 4, 7, 10, and 13 are tracked.
6117image::track-3-4-7-10-13.png[]
6118
6119You can add more PIDs to the whitelist afterwards:
6120
6121[role="term"]
6122----
6123lttng track --pid=1,15,16
6124----
6125
6126The result is:
6127
6128[role="img-100"]
6129.PIDs 1, 15, and 16 are added to the whitelist.
6130image::track-1-3-4-7-10-13-15-16.png[]
6131
6132The man:lttng-untrack(1) command removes entries from the PID tracker's
6133whitelist. Given the previous example, the following command:
6134
6135[role="term"]
6136----
6137lttng untrack --pid=3,7,10,13
6138----
6139
6140leads to this whitelist:
6141
6142[role="img-100"]
6143.PIDs 3, 7, 10, and 13 are removed from the whitelist.
6144image::track-1-4-15-16.png[]
6145
6146LTTng can track all possible PIDs again using the opt:track(1):--all
6147option:
6148
6149[role="term"]
6150----
6151lttng track --pid --all
6152----
6153
6154The result is, again:
6155
6156[role="img-100"]
6157.All PIDs are tracked.
6158image::track-all.png[]
6159====
6160
6161.Track only specific PIDs
6162====
6163A very typical use case with PID tracking is to start with an empty
6164whitelist, then <<basic-tracing-session-control,start the tracers>>, and
6165then add PIDs manually while tracers are active. You can accomplish this
6166by using the opt:lttng-untrack(1):--all option of the
6167man:lttng-untrack(1) command to clear the whitelist after you
6168<<creating-destroying-tracing-sessions,create a tracing session>>:
6169
6170[role="term"]
6171----
6172lttng untrack --pid --all
6173----
6174
6175gives:
6176
6177[role="img-100"]
6178.No PIDs are tracked.
6179image::untrack-all.png[]
6180
6181If you trace with this whitelist configuration, the tracer records no
6182events for this <<domain,tracing domain>> because no processes are
6183tracked. You can use the man:lttng-track(1) command as usual to track
6184specific PIDs, for example:
6185
6186[role="term"]
6187----
6188lttng track --pid=6,11
6189----
6190
6191Result:
6192
6193[role="img-100"]
6194.PIDs 6 and 11 are tracked.
6195image::track-6-11.png[]
6196====
6197
6198
6199[role="since-2.5"]
6200[[saving-loading-tracing-session]]
6201=== Save and load tracing session configurations
6202
6203Configuring a <<tracing-session,tracing session>> can be long. Some of
6204the tasks involved are:
6205
6206* <<enabling-disabling-channels,Create channels>> with
6207 specific attributes.
6208* <<adding-context,Add context fields>> to specific channels.
6209* <<enabling-disabling-events,Create event rules>> with specific log
6210 level and filter conditions.
6211
6212If you use LTTng to solve real world problems, chances are you have to
6213record events using the same tracing session setup over and over,
6214modifying a few variables each time in your instrumented program
6215or environment. To avoid constant tracing session reconfiguration,
6216the man:lttng(1) command-line tool can save and load tracing session
6217configurations to/from XML files.
6218
6219To save a given tracing session configuration:
6220
6221* Use the man:lttng-save(1) command:
6222+
6223--
6224[role="term"]
6225----
6226lttng save my-session
6227----
6228--
6229+
6230Replace `my-session` with the name of the tracing session to save.
6231
6232LTTng saves tracing session configurations to
6233dir:{$LTTNG_HOME/.lttng/sessions} by default. Note that the
6234env:LTTNG_HOME environment variable defaults to `$HOME` if not set. Use
6235the opt:lttng-save(1):--output-path option to change this destination
6236directory.
6237
6238LTTng saves all configuration parameters, for example:
6239
6240* The tracing session name.
6241* The trace data output path.
6242* The channels with their state and all their attributes.
6243* The context fields you added to channels.
6244* The event rules with their state, log level and filter conditions.
6245
6246To load a tracing session:
6247
6248* Use the man:lttng-load(1) command:
6249+
6250--
6251[role="term"]
6252----
6253lttng load my-session
6254----
6255--
6256+
6257Replace `my-session` with the name of the tracing session to load.
6258
6259When LTTng loads a configuration, it restores your saved tracing session
6260as if you just configured it manually.
6261
6262See man:lttng(1) for the complete list of command-line options. You
6263can also save and load all many sessions at a time, and decide in which
6264directory to output the XML files.
6265
6266
6267[[sending-trace-data-over-the-network]]
6268=== Send trace data over the network
6269
6270LTTng can send the recorded trace data to a remote system over the
6271network instead of writing it to the local file system.
6272
6273To send the trace data over the network:
6274
6275. On the _remote_ system (which can also be the target system),
6276 start an LTTng <<lttng-relayd,relay daemon>> (man:lttng-relayd(8)):
6277+
6278--
6279[role="term"]
6280----
6281lttng-relayd
6282----
6283--
6284
6285. On the _target_ system, create a tracing session configured to
6286 send trace data over the network:
6287+
6288--
6289[role="term"]
6290----
6291lttng create my-session --set-url=net://remote-system
6292----
6293--
6294+
6295Replace `remote-system` by the host name or IP address of the
6296remote system. See man:lttng-create(1) for the exact URL format.
6297
6298. On the target system, use the man:lttng(1) command-line tool as usual.
6299 When tracing is active, the target's consumer daemon sends sub-buffers
6300 to the relay daemon running on the remote system intead of flushing
6301 them to the local file system. The relay daemon writes the received
6302 packets to the local file system.
6303
6304The relay daemon writes trace files to
6305+$LTTNG_HOME/lttng-traces/__hostname__/__session__+ by default, where
6306+__hostname__+ is the host name of the target system and +__session__+
6307is the tracing session name. Note that the env:LTTNG_HOME environment
6308variable defaults to `$HOME` if not set. Use the
6309opt:lttng-relayd(8):--output option of man:lttng-relayd(8) to write
6310trace files to another base directory.
6311
6312
6313[role="since-2.4"]
6314[[lttng-live]]
6315=== View events as LTTng emits them (noch:{LTTng} live)
6316
6317LTTng live is a network protocol implemented by the <<lttng-relayd,relay
6318daemon>> (man:lttng-relayd(8)) to allow compatible trace viewers to
6319display events as LTTng emits them on the target system while tracing is
6320active.
6321
6322The relay daemon creates a _tee_: it forwards the trace data to both
6323the local file system and to connected live viewers:
6324
6325[role="img-90"]
6326.The relay daemon creates a _tee_, forwarding the trace data to both trace files and a connected live viewer.
6327image::live.png[]
6328
6329To use LTTng live:
6330
6331. On the _target system_, create a <<tracing-session,tracing session>>
6332 in _live mode_:
6333+
6334--
6335[role="term"]
6336----
6337lttng create --live my-session
6338----
6339--
6340+
6341This spawns a local relay daemon.
6342
6343. Start the live viewer and configure it to connect to the relay
6344 daemon. For example, with http://diamon.org/babeltrace[Babeltrace]:
6345+
6346--
6347[role="term"]
6348----
6349babeltrace --input-format=lttng-live net://localhost/host/hostname/my-session
6350----
6351--
6352+
6353Replace:
6354+
6355--
6356* `hostname` with the host name of the target system.
6357* `my-session` with the name of the tracing session to view.
6358--
6359
6360. Configure the tracing session as usual with the man:lttng(1)
6361 command-line tool, and <<basic-tracing-session-control,start tracing>>.
6362
6363You can list the available live tracing sessions with Babeltrace:
6364
6365[role="term"]
6366----
6367babeltrace --input-format=lttng-live net://localhost
6368----
6369
6370You can start the relay daemon on another system. In this case, you need
6371to specify the relay daemon's URL when you create the tracing session
6372with the opt:lttng-create(1):--set-url option. You also need to replace
6373`localhost` in the procedure above with the host name of the system on
6374which the relay daemon is running.
6375
6376See man:lttng-create(1) and man:lttng-relayd(8) for the complete list of
6377command-line options.
6378
6379
6380[role="since-2.3"]
6381[[taking-a-snapshot]]
6382=== Take a snapshot of the current sub-buffers of a tracing session
6383
6384The normal behavior of LTTng is to append full sub-buffers to growing
6385trace data files. This is ideal to keep a full history of the events
6386that occurred on the target system, but it can
6387represent too much data in some situations. For example, you may wish
6388to trace your application continuously until some critical situation
6389happens, in which case you only need the latest few recorded
6390events to perform the desired analysis, not multi-gigabyte trace files.
6391
6392With the man:lttng-snapshot(1) command, you can take a snapshot of the
6393current sub-buffers of a given <<tracing-session,tracing session>>.
6394LTTng can write the snapshot to the local file system or send it over
6395the network.
6396
6397To take a snapshot:
6398
6399. Create a tracing session in _snapshot mode_:
6400+
6401--
6402[role="term"]
6403----
6404lttng create --snapshot my-session
6405----
6406--
6407+
6408The <<channel-overwrite-mode-vs-discard-mode,event loss mode>> of
6409<<channel,channels>> created in this mode is automatically set to
6410_overwrite_ (flight recorder mode).
6411
6412. Configure the tracing session as usual with the man:lttng(1)
6413 command-line tool, and <<basic-tracing-session-control,start tracing>>.
6414
6415. **Optional**: When you need to take a snapshot,
6416 <<basic-tracing-session-control,stop tracing>>.
6417+
6418You can take a snapshot when the tracers are active, but if you stop
6419them first, you are sure that the data in the sub-buffers does not
6420change before you actually take the snapshot.
6421
6422. Take a snapshot:
6423+
6424--
6425[role="term"]
6426----
6427lttng snapshot record --name=my-first-snapshot
6428----
6429--
6430+
6431LTTng writes the current sub-buffers of all the current tracing
6432session's channels to trace files on the local file system. Those trace
6433files have `my-first-snapshot` in their name.
6434
6435There is no difference between the format of a normal trace file and the
6436format of a snapshot: viewers of LTTng traces also support LTTng
6437snapshots.
6438
6439By default, LTTng writes snapshot files to the path shown by
6440`lttng snapshot list-output`. You can change this path or decide to send
6441snapshots over the network using either:
6442
6443. An output path or URL that you specify when you create the
6444 tracing session.
6445. An snapshot output path or URL that you add using
6446 `lttng snapshot add-output`
6447. An output path or URL that you provide directly to the
6448 `lttng snapshot record` command.
6449
6450Method 3 overrides method 2, which overrides method 1. When you
6451specify a URL, a relay daemon must listen on a remote system (see
6452<<sending-trace-data-over-the-network,Send trace data over the network>>).
6453
6454
6455[role="since-2.6"]
6456[[mi]]
6457=== Use the machine interface
6458
6459With any command of the man:lttng(1) command-line tool, you can set the
6460opt:lttng(1):--mi option to `xml` (before the command name) to get an
6461XML machine interface output, for example:
6462
6463[role="term"]
6464----
6465lttng --mi=xml enable-event --kernel --syscall open
6466----
6467
6468A schema definition (XSD) is
6469https://github.com/lttng/lttng-tools/blob/stable-2.9/src/common/mi-lttng-3.0.xsd[available]
6470to ease the integration with external tools as much as possible.
6471
6472
6473[role="since-2.8"]
6474[[metadata-regenerate]]
6475=== Regenerate the metadata of an LTTng trace
6476
6477An LTTng trace, which is a http://diamon.org/ctf[CTF] trace, has both
6478data stream files and a metadata file. This metadata file contains,
6479amongst other things, information about the offset of the clock sources
6480used to timestamp <<event,event records>> when tracing.
6481
6482If, once a <<tracing-session,tracing session>> is
6483<<basic-tracing-session-control,started>>, a major
6484https://en.wikipedia.org/wiki/Network_Time_Protocol[NTP] correction
6485happens, the trace's clock offset also needs to be updated. You
6486can use the `metadata` item of the man:lttng-regenerate(1) command
6487to do so.
6488
6489The main use case of this command is to allow a system to boot with
6490an incorrect wall time and trace it with LTTng before its wall time
6491is corrected. Once the system is known to be in a state where its
6492wall time is correct, it can run `lttng regenerate metadata`.
6493
6494To regenerate the metadata of an LTTng trace:
6495
6496* Use the `metadata` item of the man:lttng-regenerate(1) command:
6497+
6498--
6499[role="term"]
6500----
6501lttng regenerate metadata
6502----
6503--
6504
6505[IMPORTANT]
6506====
6507`lttng regenerate metadata` has the following limitations:
6508
6509* Tracing session <<creating-destroying-tracing-sessions,created>>
6510 in non-live mode.
6511* User space <<channel,channels>>, if any, are using
6512 <<channel-buffering-schemes,per-user buffering>>.
6513====
6514
6515
6516[role="since-2.9"]
6517[[regenerate-statedump]]
6518=== Regenerate the state dump of a tracing session
6519
6520The LTTng kernel and user space tracers generate state dump
6521<<event,event records>> when the application starts or when you
6522<<basic-tracing-session-control,start a tracing session>>. An analysis
6523can use the state dump event records to set an initial state before it
6524builds the rest of the state from the following event records.
6525http://tracecompass.org/[Trace Compass] is a notable example of an
6526application which uses the state dump of an LTTng trace.
6527
6528When you <<taking-a-snapshot,take a snapshot>>, it's possible that the
6529state dump event records are not included in the snapshot because they
6530were recorded to a sub-buffer that has been consumed or overwritten
6531already.
6532
6533You can use the `lttng regenerate statedump` command to emit the state
6534dump event records again.
6535
6536To regenerate the state dump of the current tracing session, provided
6537create it in snapshot mode, before you take a snapshot:
6538
6539. Use the `statedump` item of the man:lttng-regenerate(1) command:
6540+
6541--
6542[role="term"]
6543----
6544lttng regenerate statedump
6545----
6546--
6547
6548. <<basic-tracing-session-control,Stop the tracing session>>:
6549+
6550--
6551[role="term"]
6552----
6553lttng stop
6554----
6555--
6556
6557. <<taking-a-snapshot,Take a snapshot>>:
6558+
6559--
6560[role="term"]
6561----
6562lttng snapshot record --name=my-snapshot
6563----
6564--
6565
6566Depending on the event throughput, you should run steps 1 and 2
6567as closely as possible.
6568
6569NOTE: To record the state dump events, you need to
6570<<enabling-disabling-events,create event rules>> which enable them.
6571LTTng-UST state dump tracepoints start with `lttng_ust_statedump:`.
6572LTTng-modules state dump tracepoints start with `lttng_statedump_`.
6573
6574
6575[role="since-2.7"]
6576[[persistent-memory-file-systems]]
6577=== Record trace data on persistent memory file systems
6578
6579https://en.wikipedia.org/wiki/Non-volatile_random-access_memory[Non-volatile random-access memory]
6580(NVRAM) is random-access memory that retains its information when power
6581is turned off (non-volatile). Systems with such memory can store data
6582structures in RAM and retrieve them after a reboot, without flushing
6583to typical _storage_.
6584
6585Linux supports NVRAM file systems thanks to either
6586http://pramfs.sourceforge.net/[PRAMFS] or
6587https://www.kernel.org/doc/Documentation/filesystems/dax.txt[DAX]{nbsp}+{nbsp}http://lkml.iu.edu/hypermail/linux/kernel/1504.1/03463.html[pmem]
6588(requires Linux 4.1+).
6589
6590This section does not describe how to operate such file systems;
6591we assume that you have a working persistent memory file system.
6592
6593When you create a <<tracing-session,tracing session>>, you can specify
6594the path of the shared memory holding the sub-buffers. If you specify a
6595location on an NVRAM file system, then you can retrieve the latest
6596recorded trace data when the system reboots after a crash.
6597
6598To record trace data on a persistent memory file system and retrieve the
6599trace data after a system crash:
6600
6601. Create a tracing session with a sub-buffer shared memory path located
6602 on an NVRAM file system:
6603+
6604--
6605[role="term"]
6606----
6607lttng create --shm-path=/path/to/shm
6608----
6609--
6610
6611. Configure the tracing session as usual with the man:lttng(1)
6612 command-line tool, and <<basic-tracing-session-control,start tracing>>.
6613
6614. After a system crash, use the man:lttng-crash(1) command-line tool to
6615 view the trace data recorded on the NVRAM file system:
6616+
6617--
6618[role="term"]
6619----
6620lttng-crash /path/to/shm
6621----
6622--
6623
6624The binary layout of the ring buffer files is not exactly the same as
6625the trace files layout. This is why you need to use man:lttng-crash(1)
6626instead of your preferred trace viewer directly.
6627
6628To convert the ring buffer files to LTTng trace files:
6629
6630* Use the opt:lttng-crash(1):--extract option of man:lttng-crash(1):
6631+
6632--
6633[role="term"]
6634----
6635lttng-crash --extract=/path/to/trace /path/to/shm
6636----
6637--
6638
6639
6640[[reference]]
6641== Reference
6642
6643[[lttng-modules-ref]]
6644=== noch:{LTTng-modules}
6645
6646
6647[role="since-2.9"]
6648[[lttng-tracepoint-enum]]
6649==== `LTTNG_TRACEPOINT_ENUM()` usage
6650
6651Use the `LTTNG_TRACEPOINT_ENUM()` macro to define an enumeration:
6652
6653[source,c]
6654----
6655LTTNG_TRACEPOINT_ENUM(name, TP_ENUM_VALUES(entries))
6656----
6657
6658Replace:
6659
6660* `name` with the name of the enumeration (C identifier, unique
6661 amongst all the defined enumerations).
6662* `entries` with a list of enumeration entries.
6663
6664The available enumeration entry macros are:
6665
6666+ctf_enum_value(__name__, __value__)+::
6667 Entry named +__name__+ mapped to the integral value +__value__+.
6668
6669+ctf_enum_range(__name__, __begin__, __end__)+::
6670 Entry named +__name__+ mapped to the range of integral values between
6671 +__begin__+ (included) and +__end__+ (included).
6672
6673+ctf_enum_auto(__name__)+::
6674 Entry named +__name__+ mapped to the integral value following the
6675 last mapping's value.
6676+
6677The last value of a `ctf_enum_value()` entry is its +__value__+
6678parameter.
6679+
6680The last value of a `ctf_enum_range()` entry is its +__end__+ parameter.
6681+
6682If `ctf_enum_auto()` is the first entry in the list, its integral
6683value is 0.
6684
6685Use the `ctf_enum()` <<lttng-modules-tp-fields,field definition macro>>
6686to use a defined enumeration as a tracepoint field.
6687
6688.Define an enumeration with `LTTNG_TRACEPOINT_ENUM()`.
6689====
6690[source,c]
6691----
6692LTTNG_TRACEPOINT_ENUM(
6693 my_enum,
6694 TP_ENUM_VALUES(
6695 ctf_enum_auto("AUTO: EXPECT 0")
6696 ctf_enum_value("VALUE: 23", 23)
6697 ctf_enum_value("VALUE: 27", 27)
6698 ctf_enum_auto("AUTO: EXPECT 28")
6699 ctf_enum_range("RANGE: 101 TO 303", 101, 303)
6700 ctf_enum_auto("AUTO: EXPECT 304")
6701 )
6702)
6703----
6704====
6705
6706
6707[role="since-2.7"]
6708[[lttng-modules-tp-fields]]
6709==== Tracepoint fields macros (for `TP_FIELDS()`)
6710
6711[[tp-fast-assign]][[tp-struct-entry]]The available macros to define
6712tracepoint fields, which must be listed within `TP_FIELDS()` in
6713`LTTNG_TRACEPOINT_EVENT()`, are:
6714
6715[role="func-desc growable",cols="asciidoc,asciidoc"]
6716.Available macros to define LTTng-modules tracepoint fields
6717|====
6718|Macro |Description and parameters
6719
6720|
6721+ctf_integer(__t__, __n__, __e__)+
6722
6723+ctf_integer_nowrite(__t__, __n__, __e__)+
6724
6725+ctf_user_integer(__t__, __n__, __e__)+
6726
6727+ctf_user_integer_nowrite(__t__, __n__, __e__)+
6728|
6729Standard integer, displayed in base 10.
6730
6731+__t__+::
6732 Integer C type (`int`, `long`, `size_t`, ...).
6733
6734+__n__+::
6735 Field name.
6736
6737+__e__+::
6738 Argument expression.
6739
6740|
6741+ctf_integer_hex(__t__, __n__, __e__)+
6742
6743+ctf_user_integer_hex(__t__, __n__, __e__)+
6744|
6745Standard integer, displayed in base 16.
6746
6747+__t__+::
6748 Integer C type.
6749
6750+__n__+::
6751 Field name.
6752
6753+__e__+::
6754 Argument expression.
6755
6756|+ctf_integer_oct(__t__, __n__, __e__)+
6757|
6758Standard integer, displayed in base 8.
6759
6760+__t__+::
6761 Integer C type.
6762
6763+__n__+::
6764 Field name.
6765
6766+__e__+::
6767 Argument expression.
6768
6769|
6770+ctf_integer_network(__t__, __n__, __e__)+
6771
6772+ctf_user_integer_network(__t__, __n__, __e__)+
6773|
6774Integer in network byte order (big-endian), displayed in base 10.
6775
6776+__t__+::
6777 Integer C type.
6778
6779+__n__+::
6780 Field name.
6781
6782+__e__+::
6783 Argument expression.
6784
6785|
6786+ctf_integer_network_hex(__t__, __n__, __e__)+
6787
6788+ctf_user_integer_network_hex(__t__, __n__, __e__)+
6789|
6790Integer in network byte order, displayed in base 16.
6791
6792+__t__+::
6793 Integer C type.
6794
6795+__n__+::
6796 Field name.
6797
6798+__e__+::
6799 Argument expression.
6800
6801|
6802+ctf_enum(__N__, __t__, __n__, __e__)+
6803
6804+ctf_enum_nowrite(__N__, __t__, __n__, __e__)+
6805
6806+ctf_user_enum(__N__, __t__, __n__, __e__)+
6807
6808+ctf_user_enum_nowrite(__N__, __t__, __n__, __e__)+
6809|
6810Enumeration.
6811
6812+__N__+::
6813 Name of a <<lttng-tracepoint-enum,previously defined enumeration>>.
6814
6815+__t__+::
6816 Integer C type (`int`, `long`, `size_t`, ...).
6817
6818+__n__+::
6819 Field name.
6820
6821+__e__+::
6822 Argument expression.
6823
6824|
6825+ctf_string(__n__, __e__)+
6826
6827+ctf_string_nowrite(__n__, __e__)+
6828
6829+ctf_user_string(__n__, __e__)+
6830
6831+ctf_user_string_nowrite(__n__, __e__)+
6832|
6833Null-terminated string; undefined behavior if +__e__+ is `NULL`.
6834
6835+__n__+::
6836 Field name.
6837
6838+__e__+::
6839 Argument expression.
6840
6841|
6842+ctf_array(__t__, __n__, __e__, __s__)+
6843
6844+ctf_array_nowrite(__t__, __n__, __e__, __s__)+
6845
6846+ctf_user_array(__t__, __n__, __e__, __s__)+
6847
6848+ctf_user_array_nowrite(__t__, __n__, __e__, __s__)+
6849|
6850Statically-sized array of integers.
6851
6852+__t__+::
6853 Array element C type.
6854
6855+__n__+::
6856 Field name.
6857
6858+__e__+::
6859 Argument expression.
6860
6861+__s__+::
6862 Number of elements.
6863
6864|
6865+ctf_array_bitfield(__t__, __n__, __e__, __s__)+
6866
6867+ctf_array_bitfield_nowrite(__t__, __n__, __e__, __s__)+
6868
6869+ctf_user_array_bitfield(__t__, __n__, __e__, __s__)+
6870
6871+ctf_user_array_bitfield_nowrite(__t__, __n__, __e__, __s__)+
6872|
6873Statically-sized array of bits.
6874
6875The type of +__e__+ must be an integer type. +__s__+ is the number
6876of elements of such type in +__e__+, not the number of bits.
6877
6878+__t__+::
6879 Array element C type.
6880
6881+__n__+::
6882 Field name.
6883
6884+__e__+::
6885 Argument expression.
6886
6887+__s__+::
6888 Number of elements.
6889
6890|
6891+ctf_array_text(__t__, __n__, __e__, __s__)+
6892
6893+ctf_array_text_nowrite(__t__, __n__, __e__, __s__)+
6894
6895+ctf_user_array_text(__t__, __n__, __e__, __s__)+
6896
6897+ctf_user_array_text_nowrite(__t__, __n__, __e__, __s__)+
6898|
6899Statically-sized array, printed as text.
6900
6901The string does not need to be null-terminated.
6902
6903+__t__+::
6904 Array element C type (always `char`).
6905
6906+__n__+::
6907 Field name.
6908
6909+__e__+::
6910 Argument expression.
6911
6912+__s__+::
6913 Number of elements.
6914
6915|
6916+ctf_sequence(__t__, __n__, __e__, __T__, __E__)+
6917
6918+ctf_sequence_nowrite(__t__, __n__, __e__, __T__, __E__)+
6919
6920+ctf_user_sequence(__t__, __n__, __e__, __T__, __E__)+
6921
6922+ctf_user_sequence_nowrite(__t__, __n__, __e__, __T__, __E__)+
6923|
6924Dynamically-sized array of integers.
6925
6926The type of +__E__+ must be unsigned.
6927
6928+__t__+::
6929 Array element C type.
6930
6931+__n__+::
6932 Field name.
6933
6934+__e__+::
6935 Argument expression.
6936
6937+__T__+::
6938 Length expression C type.
6939
6940+__E__+::
6941 Length expression.
6942
6943|
6944+ctf_sequence_hex(__t__, __n__, __e__, __T__, __E__)+
6945
6946+ctf_user_sequence_hex(__t__, __n__, __e__, __T__, __E__)+
6947|
6948Dynamically-sized array of integers, displayed in base 16.
6949
6950The type of +__E__+ must be unsigned.
6951
6952+__t__+::
6953 Array element C type.
6954
6955+__n__+::
6956 Field name.
6957
6958+__e__+::
6959 Argument expression.
6960
6961+__T__+::
6962 Length expression C type.
6963
6964+__E__+::
6965 Length expression.
6966
6967|+ctf_sequence_network(__t__, __n__, __e__, __T__, __E__)+
6968|
6969Dynamically-sized array of integers in network byte order (big-endian),
6970displayed in base 10.
6971
6972The type of +__E__+ must be unsigned.
6973
6974+__t__+::
6975 Array element C type.
6976
6977+__n__+::
6978 Field name.
6979
6980+__e__+::
6981 Argument expression.
6982
6983+__T__+::
6984 Length expression C type.
6985
6986+__E__+::
6987 Length expression.
6988
6989|
6990+ctf_sequence_bitfield(__t__, __n__, __e__, __T__, __E__)+
6991
6992+ctf_sequence_bitfield_nowrite(__t__, __n__, __e__, __T__, __E__)+
6993
6994+ctf_user_sequence_bitfield(__t__, __n__, __e__, __T__, __E__)+
6995
6996+ctf_user_sequence_bitfield_nowrite(__t__, __n__, __e__, __T__, __E__)+
6997|
6998Dynamically-sized array of bits.
6999
7000The type of +__e__+ must be an integer type. +__s__+ is the number
7001of elements of such type in +__e__+, not the number of bits.
7002
7003The type of +__E__+ must be unsigned.
7004
7005+__t__+::
7006 Array element C type.
7007
7008+__n__+::
7009 Field name.
7010
7011+__e__+::
7012 Argument expression.
7013
7014+__T__+::
7015 Length expression C type.
7016
7017+__E__+::
7018 Length expression.
7019
7020|
7021+ctf_sequence_text(__t__, __n__, __e__, __T__, __E__)+
7022
7023+ctf_sequence_text_nowrite(__t__, __n__, __e__, __T__, __E__)+
7024
7025+ctf_user_sequence_text(__t__, __n__, __e__, __T__, __E__)+
7026
7027+ctf_user_sequence_text_nowrite(__t__, __n__, __e__, __T__, __E__)+
7028|
7029Dynamically-sized array, displayed as text.
7030
7031The string does not need to be null-terminated.
7032
7033The type of +__E__+ must be unsigned.
7034
7035The behaviour is undefined if +__e__+ is `NULL`.
7036
7037+__t__+::
7038 Sequence element C type (always `char`).
7039
7040+__n__+::
7041 Field name.
7042
7043+__e__+::
7044 Argument expression.
7045
7046+__T__+::
7047 Length expression C type.
7048
7049+__E__+::
7050 Length expression.
7051|====
7052
7053Use the `_user` versions when the argument expression, `e`, is
7054a user space address. In the cases of `ctf_user_integer*()` and
7055`ctf_user_float*()`, `&e` must be a user space address, thus `e` must
7056be addressable.
7057
7058The `_nowrite` versions omit themselves from the session trace, but are
7059otherwise identical. This means the `_nowrite` fields won't be written
7060in the recorded trace. Their primary purpose is to make some
7061of the event context available to the
7062<<enabling-disabling-events,event filters>> without having to
7063commit the data to sub-buffers.
7064
7065
7066[[glossary]]
7067== Glossary
7068
7069Terms related to LTTng and to tracing in general:
7070
7071Babeltrace::
7072 The http://diamon.org/babeltrace[Babeltrace] project, which includes
7073 the cmd:babeltrace command, some libraries, and Python bindings.
7074
7075<<channel-buffering-schemes,buffering scheme>>::
7076 A layout of sub-buffers applied to a given channel.
7077
7078<<channel,channel>>::
7079 An entity which is responsible for a set of ring buffers.
7080+
7081<<event,Event rules>> are always attached to a specific channel.
7082
7083clock::
7084 A reference of time for a tracer.
7085
7086<<lttng-consumerd,consumer daemon>>::
7087 A process which is responsible for consuming the full sub-buffers
7088 and write them to a file system or send them over the network.
7089
7090<<channel-overwrite-mode-vs-discard-mode,discard mode>>:: The event loss
7091 mode in which the tracer _discards_ new event records when there's no
7092 sub-buffer space left to store them.
7093
7094event::
7095 The consequence of the execution of an instrumentation
7096 point, like a tracepoint that you manually place in some source code,
7097 or a Linux kernel KProbe.
7098+
7099An event is said to _occur_ at a specific time. Different actions can
7100be taken upon the occurance of an event, like record the event's payload
7101to a sub-buffer.
7102
7103<<channel-overwrite-mode-vs-discard-mode,event loss mode>>::
7104 The mechanism by which event records of a given channel are lost
7105 (not recorded) when there is no sub-buffer space left to store them.
7106
7107[[def-event-name]]event name::
7108 The name of an event, which is also the name of the event record.
7109 This is also called the _instrumentation point name_.
7110
7111event record::
7112 A record, in a trace, of the payload of an event which occured.
7113
7114<<event,event rule>>::
7115 Set of conditions which must be satisfied for one or more occuring
7116 events to be recorded.
7117
7118`java.util.logging`::
7119 Java platform's
7120 https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html[core logging facilities].
7121
7122<<instrumenting,instrumentation>>::
7123 The use of LTTng probes to make a piece of software traceable.
7124
7125instrumentation point::
7126 A point in the execution path of a piece of software that, when
7127 reached by this execution, can emit an event.
7128
7129instrumentation point name::
7130 See _<<def-event-name,event name>>_.
7131
7132log4j::
7133 A http://logging.apache.org/log4j/1.2/[logging library] for Java
7134 developed by the Apache Software Foundation.
7135
7136log level::
7137 Level of severity of a log statement or user space
7138 instrumentation point.
7139
7140LTTng::
7141 The _Linux Trace Toolkit: next generation_ project.
7142
7143<<lttng-cli,cmd:lttng>>::
7144 A command-line tool provided by the LTTng-tools project which you
7145 can use to send and receive control messages to and from a
7146 session daemon.
7147
7148LTTng analyses::
7149 The https://github.com/lttng/lttng-analyses[LTTng analyses] project,
7150 which is a set of analyzing programs that are used to obtain a
7151 higher level view of an LTTng trace.
7152
7153cmd:lttng-consumerd::
7154 The name of the consumer daemon program.
7155
7156cmd:lttng-crash::
7157 A utility provided by the LTTng-tools project which can convert
7158 ring buffer files (usually
7159 <<persistent-memory-file-systems,saved on a persistent memory file system>>)
7160 to trace files.
7161
7162LTTng Documentation::
7163 This document.
7164
7165<<lttng-live,LTTng live>>::
7166 A communication protocol between the relay daemon and live viewers
7167 which makes it possible to see events "live", as they are received by
7168 the relay daemon.
7169
7170<<lttng-modules,LTTng-modules>>::
7171 The https://github.com/lttng/lttng-modules[LTTng-modules] project,
7172 which contains the Linux kernel modules to make the Linux kernel
7173 instrumentation points available for LTTng tracing.
7174
7175cmd:lttng-relayd::
7176 The name of the relay daemon program.
7177
7178cmd:lttng-sessiond::
7179 The name of the session daemon program.
7180
7181LTTng-tools::
7182 The https://github.com/lttng/lttng-tools[LTTng-tools] project, which
7183 contains the various programs and libraries used to
7184 <<controlling-tracing,control tracing>>.
7185
7186<<lttng-ust,LTTng-UST>>::
7187 The https://github.com/lttng/lttng-ust[LTTng-UST] project, which
7188 contains libraries to instrument user applications.
7189
7190<<lttng-ust-agents,LTTng-UST Java agent>>::
7191 A Java package provided by the LTTng-UST project to allow the
7192 LTTng instrumentation of `java.util.logging` and Apache log4j 1.2
7193 logging statements.
7194
7195<<lttng-ust-agents,LTTng-UST Python agent>>::
7196 A Python package provided by the LTTng-UST project to allow the
7197 LTTng instrumentation of Python logging statements.
7198
7199<<channel-overwrite-mode-vs-discard-mode,overwrite mode>>::
7200 The event loss mode in which new event records overwrite older
7201 event records when there's no sub-buffer space left to store them.
7202
7203<<channel-buffering-schemes,per-process buffering>>::
7204 A buffering scheme in which each instrumented process has its own
7205 sub-buffers for a given user space channel.
7206
7207<<channel-buffering-schemes,per-user buffering>>::
7208 A buffering scheme in which all the processes of a Unix user share the
7209 same sub-buffer for a given user space channel.
7210
7211<<lttng-relayd,relay daemon>>::
7212 A process which is responsible for receiving the trace data sent by
7213 a distant consumer daemon.
7214
7215ring buffer::
7216 A set of sub-buffers.
7217
7218<<lttng-sessiond,session daemon>>::
7219 A process which receives control commands from you and orchestrates
7220 the tracers and various LTTng daemons.
7221
7222<<taking-a-snapshot,snapshot>>::
7223 A copy of the current data of all the sub-buffers of a given tracing
7224 session, saved as trace files.
7225
7226sub-buffer::
7227 One part of an LTTng ring buffer which contains event records.
7228
7229timestamp::
7230 The time information attached to an event when it is emitted.
7231
7232trace (_noun_)::
7233 A set of files which are the concatenations of one or more
7234 flushed sub-buffers.
7235
7236trace (_verb_)::
7237 The action of recording the events emitted by an application
7238 or by a system, or to initiate such recording by controlling
7239 a tracer.
7240
7241Trace Compass::
7242 The http://tracecompass.org[Trace Compass] project and application.
7243
7244tracepoint::
7245 An instrumentation point using the tracepoint mechanism of the Linux
7246 kernel or of LTTng-UST.
7247
7248tracepoint definition::
7249 The definition of a single tracepoint.
7250
7251tracepoint name::
7252 The name of a tracepoint.
7253
7254tracepoint provider::
7255 A set of functions providing tracepoints to an instrumented user
7256 application.
7257+
7258Not to be confused with a _tracepoint provider package_: many tracepoint
7259providers can exist within a tracepoint provider package.
7260
7261tracepoint provider package::
7262 One or more tracepoint providers compiled as an object file or as
7263 a shared library.
7264
7265tracer::
7266 A software which records emitted events.
7267
7268<<domain,tracing domain>>::
7269 A namespace for event sources.
7270
7271tracing group::
7272 The Unix group in which a Unix user can be to be allowed to trace the
7273 Linux kernel.
7274
7275<<tracing-session,tracing session>>::
7276 A stateful dialogue between you and a <<lttng-sessiond,session
7277 daemon>>.
7278
7279user application::
7280 An application running in user space, as opposed to a Linux kernel
7281 module, for example.
This page took 0.278414 seconds and 4 git commands to generate.