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