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