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