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