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