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