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