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