update lttng manual
[lttv.git] / LTTngManual.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>Linux Trace Toolkit Next Generation Manual</title>
5 </head>
6 <body>
7
8 <h1>Linux Trace Toolkit Next Generation Manual</h1>
9
10 Author : Mathieu Desnoyers, September 2005<br>
11 Last update : January 21st, 2009<br>
12 (originally known as the LTTng QUICKSTART guide)
13
14 <h2>Table of Contents</h2>
15
16 <ul>
17 <li><a href="#intro" name="TOCintro">Introduction</a></li>
18 <ul>
19 <li><a href="#licenses" name="TOClicenses">Licenses</a></li>
20 <ul>
21 <li><a href="#arch" name="TOCarch">Supported architectures</a></li>
22 </ul>
23
24 <li><a href="#section1" name="TOCsection1">Installing LTTng and LTTV from
25 sources</a></li>
26 <ul>
27 <li><a href="#prerequisites" name="TOCprerequisites">Prerequisistes</li>
28 <li><a href="#getlttng" name="TOCgetlttng">Getting the LTTng packages</li>
29 <li><a href="#getlttngsrc" name="TOCgetlttngsrc">Getting the LTTng kernel sources</li>
30 <li><a href="#installlttng" name="TOCinstalllttng">Installing a LTTng kernel</li>
31 <li><a href="#editconfig" name="TOCeditconfig">Editing the system wide
32 configuration</a>
33 <li><a href="#getlttctl" name="TOCgetlttctl">Getting and installing the
34 ltt-control package</li>
35 <li><a href="#userspacetracing" name="TOCuserspacetracing">Userspace Tracing</li>
36 <li><a href="#getlttv" name="TOCgetlttv">Getting and installing the LTTV package</ul>
37
38 <li><a href="#section2" name="TOCsection2">Using LTTng and LTTV</a></li>
39 <ul>
40 <li><a href="#uselttvgui" name="TOCuselttvgui">Use graphical LTTV to control
41 tracing and analyse traces</a></li>
42 <li><a href="#uselttngtext" name="TOCuselttngtext">Use text mode LTTng to
43 control tracing</a></li>
44 <li><a href="#uselttvtext" name="TOCuselttvtext">Use text mode LTTV</a></li>
45 <li><a href="#hybrid" name="TOChybrid">Tracing in "Hybrid" mode</a></li>
46 <li><a href="#flight" name="TOCflight">Tracing in flight recorder mode</a></li>
47 </ul>
48
49 <li><a href="#section3" name="TOCsection3">Adding kernel and user-space
50 instrumentation</a>
51 <ul>
52 <li><a href="#kerneltp" name="TOCkerneltp">Adding kernel instrumentation</a></li>
53 <li><a href="#usertp" name="TOCusertp">Adding userspace instrumentation</a></li>
54 </ul>
55
56 <li><a href="#section4" name="TOCsection4">Creating Debian and RPM packages
57 from LTTV</a></li>
58 <ul>
59 <li><a href="#pkgdebian" name="TOCpkgdebian">Create custom LTTV Debian
60 <li><a href="#pkglttng" name="TOCpkglttng">Create custom LTTng packages</a></li>
61 </ul>
62
63 </ul>
64
65 <hr />
66
67 <h2><a href="#TOCintro" name="intro">Introduction</a></h2>
68 <p>
69 This document is made of five parts : the first one explains how
70 to install LTTng and LTTV from sources, the second one describes the steps
71 to follow to trace a system and view it. The third part explains
72 briefly how to add a new trace point to the kernel and to user space
73 applications. The fourth and last part explains how to create Debian or RPM
74 packages from the LTTng and LTTV sources.
75 <p>
76 These operations are made for installing the LTTng 0.86 tracer on a linux 2.6.X
77 kernel. You will also find instructions for installation of LTTV 0.12.x : the
78 Linux Trace Toolkit Viewer.
79 To see the list of compatibilities between LTTng, ltt-control, LTTV, please
80 refer to :
81 <a
82 href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV versions compatibility</a>
83
84 The ongoing work had the Linux Kernel Markers integrated in the mainline Linux
85 kernel since Linux 2.6.24 and the Tracepoints since 2.6.28. In its current
86 state, the lttng patchset is necessary to have the trace clocksource, the
87 instrumentation and the LTTng high-speed data extraction mechanism added to the
88 kernel.
89
90 <br>
91 <br>
92 <h3><a href="#TOClicenses" name="licenses">Licenses</a></h3>
93 <br>
94 <p>
95 LTTng, UST and LTTV are developed by an open community. LTTng is released under
96 a dual Gnu LGPLv2.1/GPLv2 license, except for very few kernel-specific files
97 which are derived work from the Linux kernel.
98 <p>
99 LTTV is available under the Gnu GPLv2. The low-level LTTV trace reading library
100 is released under Gnu LGPLv2.1.
101 <p>
102 The UST (Userspace Tracing) and the Userspace RCU libraries are released under
103 the LGPLv2.1 license, which allows linking with non-GPL (BSD, proprietary...)
104 applications. The associated headers are released under MIT-style/BSD-style
105 licenses.
106 <p>
107 Please refer to each particular file licensing for details.
108
109 <br>
110 <br>
111 <h3><a href="#TOCarch" name="arch">Supported architectures</a></h3>
112 <br>
113 LTTng :<br>
114 <br>
115 <li> x86 32/64 bits
116 <li> PowerPC 32 and 64 bits
117 <li> ARMv7 OMAP3
118 <li> Other ARM (with limited timestamping precision, e.g. 1HZ. Need
119 architecture-specific support for better precision)
120 <li> MIPS
121 <li> sh (partial architecture-specific instrumentation)
122 <li> sparc64 (partial architecture-specific instrumentation)
123 <li> s390 (partial architecture-specific instrumentation)
124 <li> Other architectures supported without architecture-specific instrumentation
125 and with low-resolution timestamps.<br>
126 <br>
127 <br>
128 LTTV :<br>
129 <br>
130 <li> Intel 32/64 bits
131 <li> PowerPC 32 and 64 bits
132 <li> Possibly others. Takes care of endianness and type size difference between
133 the LTTng traces and the LTTV analysis tool.
134
135 <hr />
136
137
138 <h2><a href="#TOCsection1" name="section1">Installation from sources</a></h2>
139 <p>
140
141 <h3><a href="#TOCprerequisites" name="prerequisites">Prerequisites</a></h3>
142 <ul>
143 <p>
144 Tools needed to follow the package download steps :
145
146 <li>wget
147 <li>bzip2
148 <li>gzip
149 <li>tar
150
151 <p>
152 You have to install the standard development libraries and programs necessary
153 to compile a kernel :
154
155 <PRE>
156 (from Documentation/Changes in the Linux kernel tree)
157 Gnu C 2.95.3 # gcc --version
158 Gnu make 3.79.1 # make --version
159 binutils 2.12 # ld -v
160 util-linux 2.10o # fdformat --version
161 module-init-tools 0.9.10 # depmod -V
162 </PRE>
163
164 <p>
165 You might also want to have libncurses5 to have the text mode kernel
166 configuration menu, but there are alternatives.
167
168 <p>
169 Prerequisites for LTTV 0.x.x installation are :
170
171 <PRE>
172 gcc 3.2 or better
173 gtk 2.4 or better development libraries
174 (Debian : libgtk2.0, libgtk2.0-dev)
175 (Fedora : gtk2, gtk2-devel)
176 note : For Fedora users : this might require at least core 3 from Fedora,
177 or you might have to compile your own GTK2 library.
178 glib 2.4 or better development libraries
179 (Debian : libglib2.0-0, libglib2.0-dev)
180 (Fedora : glib2, glib2-devel)
181 libpopt development libraries
182 (Debian : libpopt0, libpopt-dev)
183 (Fedora : popt)
184 libpango development libraries
185 (Debian : libpango1.0, libpango1.0-dev)
186 (Fedora : pango, pango-devel)
187 libc6 development librairies
188 (Debian : libc6, libc6-dev)
189 (Fedora : glibc, glibc)
190 </PRE>
191 </ul>
192
193 <li>Reminder</li>
194
195 <p>
196 See the list of compatibilities between LTTng, ltt-control and LTTV at :
197 <a
198 href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV
199 versions compatibility</a>.
200
201
202 <h3><a href="#TOCgetlttng" name="getlttng">Getting the LTTng packages</a></h3>
203
204 <PRE>
205 su -
206 mkdir /usr/src/lttng
207 cd /usr/src/lttng
208 (see http://ltt.polymtl.ca/lttng for package listing)
209 wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
210 bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
211 </PRE>
212
213
214 <h3><a href="#TOCgetlttngsrc" name="getlttngsrc">Getting LTTng kernel sources</a></h3>
215
216 <PRE>
217 su -
218 cd /usr/src
219 wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
220 bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
221 cd linux-2.6.X
222 - For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
223 - For LTTng 0.9.5+ apply the patches in the order specified in the series file,
224 or use quilt
225 cd ..
226 mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
227 </PRE>
228
229
230 <h3><a href="#TOCinstalllttng" name="installlttng">Installing a LTTng kernel</a></h3>
231
232 <PRE>
233 su -
234 cd /usr/src/linux-2.6.X-lttng-0.x.xx
235 make menuconfig (or make xconfig or make config)
236 Select the < Help > button if you are not familiar with kernel
237 configuration.
238 Items preceded by [*] means they has to be built into the kernel.
239 Items preceded by [M] means they has to be built as modules.
240 Items preceded by [ ] means they should be removed.
241 go to the "General setup" section
242 Select the following options :
243 [*] Prompt for development and/or incomplete code/drivers
244 [*] Activate markers
245 [*] Activate userspace markers ABI (experimental, optional)
246 [*] Immediate value optimization (optional)
247 [*] Linux Trace Toolkit Next Generation (LTTng) --->
248 <M> or <*> Compile lttng tracing probes
249 <M> or <*> Linux Trace Toolkit High-speed Lockless Data Relay
250 <M> or <*> Linux Trace Toolkit Lock-Protected Data Relay
251 <M> or <*> Linux Trace Toolkit Serializer
252 <M> or <*> Linux Trace Toolkit Marker Control
253 <M> or <*> Linux Trace Toolkit Tracer
254 [*] Align Linux Trace Toolkit Traces
255 <M> or <*> Support logging events from userspace
256 [*] Support trace extraction from crash dump
257 <M> or <*> Linux Trace Toolkit Trace Controller
258 <M> or <*> Linux Trace Toolkit State Dump
259 Select <Exit>
260 Select <Exit>
261 Select <Yes>
262 make
263 make modules_install
264 (if necessary, create a initrd with mkinitrd or your preferate alternative)
265 (mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
266
267 -- on X86, X86_64
268 make install
269 reboot
270 Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
271
272 -- on PowerPC
273 cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
274 cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
275 cp .config /boot/config-2.6.X-lttng-0.x.xx
276 depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
277 mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
278 (edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
279 that comes first is the default kernel)
280 ybin
281 select the right entry at the yaboot prompt (see choices : tab, select : type
282 the kernel name followed by enter)
283 Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
284 --
285 </PRE>
286
287 <h3><a href="#TOCeditconfig" name="editconfig">Editing the system wide
288 configuration</a></h3>
289
290 <p>
291 You must activate debugfs and specify a mount point. This is typically done in
292 fstab such that it happens at boot time. If you have never used DebugFS before,
293 these operation would do this for you :
294
295 <PRE>
296 mkdir /mnt/debugfs
297 cp /etc/fstab /etc/fstab.lttng.bkp
298 echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
299 </PRE>
300
301 <p>
302 then, rebooting or issuing the following command will activate debugfs :
303 <PRE>
304 mount /mnt/debugfs
305 </PRE>
306
307 <p>
308 You need to load the LTT modules to be able to control tracing from user
309 space. This is done by issuing the following commands. Note however
310 these commands load all LTT modules. Depending on what options you chose to
311 compile statically, you may not need to issue all these commands.
312
313 <PRE>
314 modprobe ltt-trace-control
315 modprobe ltt-marker-control
316 modprobe ltt-tracer
317 modprobe ltt-serialize
318 modprobe ltt-relay
319 modprobe ipc-trace
320 modprobe kernel-trace
321 modprobe mm-trace
322 modprobe net-trace
323 modprobe fs-trace
324 modprobe jbd2-trace
325 modprobe ext4-trace
326 modprobe syscall-trace
327 modprobe trap-trace
328 #if locking tracing is wanted, uncomment the following
329 #modprobe lockdep-trace
330 </PRE>
331
332 <p>
333 If you want to have complete information about the kernel state (including all
334 the process names), you need to load the ltt-statedump module. This is done by
335 issuing the command :
336
337 <PRE>
338 modprobe ltt-statedump
339 </PRE>
340 <p>
341 You can automate at boot time loading the ltt-control module by :
342
343 <PRE>
344 cp /etc/modules /etc/modules.bkp
345 echo ltt-trace-control >> /etc/modules
346 echo ltt-marker-control >> /etc/modules
347 echo ltt-tracer >> /etc/modules
348 echo ltt-serialize >> /etc/modules
349 echo ltt-relay >> /etc/modules
350 echo ipc-trace >> /etc/modules
351 echo kernel-trace >> /etc/modules
352 echo mm-trace >> /etc/modules
353 echo net-trace >> /etc/modules
354 echo fs-trace >> /etc/modules
355 echo jbd2-trace >> /etc/modules
356 echo ext4-trace >> /etc/modules
357 echo syscall-trace >> /etc/modules
358 echo trap-trace >> /etc/modules
359 #if locking tracing is wanted, uncomment the following
360 #echo lockdep-trace >> /etc/modules
361 </PRE>
362
363
364 <h3><a href="#TOCgetlttctl" name="getlttctl">Getting and installing the
365 ltt-control package (on the traced machine)</a></h3>
366 <p>
367 (note : the ltt-control package contains lttd and lttctl. Although it has the
368 same name as the ltt-control kernel module, they are *not* the same thing.)
369
370 <PRE>
371 su -
372 cd /usr/src
373 wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
374 gzip -cd ltt-control-0.x-xxxx2008.tar.gz | tar xvof -
375 cd ltt-control-0.x-xxxx2006
376 (refer to README to see the development libraries that must be installed on you
377 system)
378 ./configure
379 make
380 make install
381 # (run ldconfig to ensure new shared objects are taken into account)
382 ldconfig
383 </PRE>
384
385 <h3><a href="#TOCuserspacetracing" name="userspacetracing">Userspace tracing</a></h3>
386
387 <PRE>
388 Make sure you selected the kernel menuconfig option :
389 <M> or <*> Support logging events from userspace
390 And that the ltt-userspace-event kernel module is loaded if selected as a
391 module.
392
393 Simple userspace tracing is available through
394 echo "some text to record" > /mnt/debugfs/ltt/write_event
395
396 It will appear in the trace under event :
397 channel : userspace
398 event name : event
399 </PRE>
400
401 <h3><a href="#TOCgetlttv" name="getlttv">Getting and installing the LTTV package
402 (on the visualisation machine, same
403 or different from the visualisation machine)</a></h3>
404
405 <PRE>
406 su -
407 cd /usr/src
408 wget http://ltt.polymtl.ca/packages/lttv-0.x.xx-xxxx2008.tar.gz
409 gzip -cd lttv-0.x.xx-xxxx2008.tar.gz | tar xvof -
410 cd lttv-0.x.xx-xxxx2008
411 (refer to README to see the development libraries that must be installed on your
412 system)
413 ./configure
414 make
415 make install
416 # (run ldconfig to ensure new shared objects are taken into account)
417 ldconfig
418 </PRE>
419
420 <hr />
421
422
423 <h2><a href="#TOCsection2" name="section2">Using LTTng and LTTV</a></h2>
424
425 <li><b>IMPORTANT : Arm Linux Kernel Markers after each boot before tracing</b></li>
426 <PRE>
427 ltt-armall
428 </PRE>
429
430 <h3><a href="#TOCuselttvgui" name="uselttvgui">Use graphical LTTV to control
431 tracing and analyse traces</a></h3>
432 <PRE>
433 lttv-gui (or /usr/local/bin/lttv-gui)
434 - Spot the "Tracing Control" icon : click on it
435 (it's a traffic light icon)
436 - enter the root password
437 - click "start"
438 - click "stop"
439 - Yes
440 * You should now see a trace
441 </PRE>
442
443 <h3><a href="#TOCuselttngtext" name="uselttngtext">Use text mode LTTng to control tracing</a></h3>
444 <PRE>
445 The tracing can be controlled from a terminal by using the lttctl command (as
446 root).
447
448 Start tracing :
449
450 lttctl -C -w /tmp/trace1 trace1
451
452 Stop tracing and destroy trace channels :
453
454 lttctl -D trace1
455
456 see lttctl --help for details.
457 </PRE>
458 <p>
459 (note : to see if the buffers has been filled, look at the dmesg output after
460 lttctl -D or after stopping tracing from the GUI, it will show an event lost
461 count. If it is the case, try using larger buffers. See lttctl --help to learn
462 how. lttv now also shows event lost messages in the console when loading a trace
463 with missing events or lost subbuffers.)
464
465 <h3><a href="#TOCuselttvtext" name="uselttvtext">Use text mode LTTV</a></h3>
466 <p>
467 Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
468 graphical plugins available.
469 <p>
470 For example, a simple trace dump in text format is available with :
471 <PRE>
472 lttv -m textDump -t /tmp/trace
473 </PRE>
474 <p>
475 See lttv -m textDump --help for detailed command line options of textDump.
476 <p>
477 It is, in the current state of the project, very useful to use "grep" on the
478 text output to filter by specific event fields. You can later copy the timestamp
479 of the events to the clipboard and paste them in the GUI by clicking on the
480 bottom right label "Current time". Support for this type of filtering should
481 be added to the filter module soon.
482
483 <h3><a href="#TOChybrid" name="hybrid">Tracing in "Hybrid" mode</a></h3>
484 <p>
485 Starting from LTTng 0.5.105 and ltt-control 0.20, a new mode can be used :
486 hybrid. It can be especially useful when studying big workloads on a long period
487 of time.
488 <p>
489 When using this mode, the most important, low rate control information will be
490 recorded during all the trace by lttd (i.e. process creation/exit). The high
491 rate information (i.e. interrupt/traps/syscall entry/exit) will be kept in a
492 flight recorder buffer (now named flight-channelname_X).
493 <p>
494 The following lttctl commands take an hybrid trace :
495 <p>
496 Create trace channel, start lttd on normal channels, start tracing:
497 <PRE>
498 lttctl -C -w /tmp/trace2 -o channel.kernel.overwrite=1 trace2
499 </PRE>
500 <p>
501 Stop tracing, start lttd on flight recorder channels, destroy trace channels :
502 <PRE>
503 lttctl -D -w /tmp/trace2 trace2
504 </PRE>
505 <p>
506 Each "overwrite" channel is flight recorder channel.
507
508
509 <h3><a href="#TOCflight" name="flight">Tracing in flight recorder mode</a></h3>
510 <li>Flight recorder mode</li>
511 <p>
512 The flight recorder mode writes data into overwritten buffers for all channels,
513 including control channels, except for the facilities tracefiles. It consists of
514 setting all channels to "overwrite".
515 <p>
516 The following lttctl commands take a flight recorder trace :
517 <PRE>
518 lttctl -C -w /tmp/trace3 -o channel.all.overwrite=1 trace3
519 ...
520 lttctl -D -w /tmp/trace3 trace3
521 </PRE>
522
523 <hr />
524
525
526 <h2><a href="#TOCsection3" name="section3">Adding new instrumentations with the
527 markers</a></h2>
528 <p>
529
530 <h3><a href="#TOCkerneltp" name="kerneltp">Adding kernel
531 instrumentation</a></h3>
532
533 <p>
534 See <a
535 href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=blob;f=Documentation/markers.txt">Documentation/markers.txt</a>
536 and <a
537 href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=blob;f=Documentation/trace/tracepoints.txt">Documentation/trace/tracepoints.txt</a> in your kernel
538 tree.
539 <p>
540 Also see <a
541 href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=tree;f=ltt/probes">ltt/probes/</a>
542 for LTTng probe examples.
543
544 <h3><a href="#TOCusertp" name="usertp">Adding userspace instrumentation</a></h3>
545
546 Add new events to userspace programs with
547 <a href="http://ltt.polymtl.ca/packages/">userspace markers packages</a>.
548 Get the latest markers-userspace-*.tar.bz2 and see the Makefile and examples. It
549 allows inserting markers in executables and libraries, currently only on x86_32
550 and x86_64.
551 See <a
552 href="http://ltt.polymtl.ca/packages/markers-userspace-0.5.tar.bz2">markers-userspace-0.5.tar.bz2</a> or more recent.
553
554 <p>
555 Note that a new design document for a 3rd generation of tracepoint/marker-based
556 userspace tracing is available at <a
557 href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/ust.html">LTTng User-space Tracing
558 Design</a>. This new infrastructure is not yet implemented.
559
560 <p>
561 The easy quick-and-dirty way to perform userspace tracing is currently to write
562 an string to /mnt/debugfs/ltt/write_event. See <a
563 href="#userspacetracing">Userspace tracing</a> in the
564 installation for sources section of this document.
565
566 <hr />
567
568 <h2><a href="#TOCsection4" name="section4">Creating Debian or RPM packages</a></h2>
569 <p>
570
571 <h3><a href="#TOCpkgdebian" name="pkgdebian">Create custom LTTV Debian packages</a></h3>
572
573 <PRE>
574 Use : dpkg-buildpackage -rfakeroot
575 </PRE>
576 <p>
577 You should then have your LTTV .deb files created for your architecture.
578
579 <h3><a href="#TOCpkglttng" name="pkglttng">Create custom LTTng packages</a></h3>
580 <p>
581 For building LTTng Debian packages :
582 get the build tree with patches applies as explained in section 2.
583
584 <PRE>
585 make menuconfig (or xconfig or config) (customize your configuration)
586 make-kpkg kernel_image
587 </PRE>
588 <p>
589 You will then see your freshly created .deb in /usr/src. Install it with
590 <PRE>
591 dpkg -i /usr/src/(image-name).deb
592 </PRE>
593 <p>
594 Then, follow the section "Editing the system wide configuration" in section 2.
595
596 <hr />
597
598 </body>
599 </html>
This page took 0.043678 seconds and 5 git commands to generate.