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