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