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