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