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