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