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