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