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