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