update compat
[lttv.git] / trunk / lttv / QUICKSTART.html
CommitLineData
c924c2c6 1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4 <title>Linux Trace Toolkit Quickstart</title>
5</head>
6 <body>
7
8<h1>Linux Trace Toolkit Quickstart</h1>
9
c924c2c6 10Author : Mathieu Desnoyers, September 2005<br>
24070967 11Last update : January 21st, 2009<br>
12
13<h2>Table of Contents</h2>
14<ul>
15
f9ff56f3 16<li><a href="#intro" name="TOCintro">Introduction</a></li>
24070967 17<li><a href="#section1" name="TOCsection1">Installing LTTng and LTTV from
18sources</a></li>
19<li><a href="#section2" name="TOCsection2">Using LTTng and LTTV</a></li>
20<li><a href="#section3" name="TOCsection3">Adding kernel and user-space
21tracepoints</a></li>
633bc4a3 22<li><a href="#section4" name="TOCsection4">Creating Debian and RPM packages
23from LTTV</a>
c924c2c6 24
f9ff56f3 25</ul>
26
27<hr />
28
b9e1fab1 29<h2><a href="#TOCintro" name="intro">Introduction</a></h2>
c924c2c6 30<p>
633bc4a3 31This document is made of four parts : the first one explains how
24070967 32to install LTTng and LTTV from sources, the second one describes the steps
633bc4a3 33to follow to trace a system and view it. The third part explains
c924c2c6 34briefly how to add a new trace point to the kernel and to user space
633bc4a3 35applications. The fourth and last part explains how to create Debian or RPM
36packages from the LTTng and LTTV sources.
c924c2c6 37
38<p>
24070967 39These operations are made for installing the LTTng 0.86 tracer on a linux 2.6.X
c924c2c6 40kernel. You will also find instructions for installation of LTTV 0.12.x : the
41Linux Trace Toolkit Viewer.
24070967 42To see the list of compatibilities between LTTng, ltt-control, LTTV, please
43refer to :
c924c2c6 44<a
45href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV versions compatibility</a>
24070967 46The lttng patch is necessary to have the tracing hooks in the kernel.
c924c2c6 47
24070967 48<br>
49<br>
633bc4a3 50Supported architectures :
24070967 51<br>
c924c2c6 52LTTng :<br>
c924c2c6 53<li> x86 32/64 bits
54<li> PowerPC 32 and 64 bits
55<li> ARM (with limited timestamping precision, e.g. 1HZ. Need
56architecture-specific support for better precision)
57<li> MIPS
58<br>
24070967 59<br>
c924c2c6 60LTTV :<br>
c924c2c6 61<li> Intel 32/64 bits
62<li> PowerPC 32 and 64 bits
63<li> Possibly others. Takes care of endianness and type size difference between
64the LTTng traces and the LTTV analysis tool.
65
f9ff56f3 66<hr />
67
c924c2c6 68
633bc4a3 69<h2><a href="#TOCsection2" name="section2">Installation from sources</a></h2>
70<p>
c924c2c6 71
633bc4a3 72<li>Prerequisites</li>
73<ul>
74<p>
c924c2c6 75Tools needed to follow the package download steps :
76
633bc4a3 77<li>wget
78<li>bzip2
79<li>gzip
80<li>tar
c924c2c6 81
633bc4a3 82<p>
c924c2c6 83You have to install the standard development libraries and programs necessary
84to compile a kernel :
85
86(from Documentation/Changes in the Linux kernel tree)
88fd3d60 87<li>Gnu C &nbsp; 2.95.3 &nbsp; # gcc --version
88<li>Gnu make &nbsp; 3.79.1 &nbsp; # make --version
89<li>binutils &nbsp; 2.12 &nbsp; # ld -v
90<li>util-linux &nbsp; 2.10o &nbsp; # fdformat --version
91<li>module-init-tools &nbsp; 0.9.10 &nbsp; # depmod -V
c924c2c6 92
633bc4a3 93<p>
c924c2c6 94You might also want to have libncurses5 to have the text mode kernel
95configuration menu, but there are alternatives.
96
633bc4a3 97<p>
c924c2c6 98Prerequisites for LTTV 0.x.x installation are :
99
633bc4a3 100<li>gcc 3.2 or better
101<li>gtk 2.4 or better development libraries
c924c2c6 102 (Debian : libgtk2.0, libgtk2.0-dev)
103 (Fedora : gtk2, gtk2-devel)
104 note : For Fedora users : this might require at least core 3 from Fedora,
105 or you might have to compile your own GTK2 library.
633bc4a3 106<li>glib 2.4 or better development libraries
c924c2c6 107 (Debian : libglib2.0-0, libglib2.0-dev)
108 (Fedora : glib2, glib2-devel)
633bc4a3 109<li>libpopt development libraries
c924c2c6 110 (Debian : libpopt0, libpopt-dev)
111 (Fedora : popt)
633bc4a3 112<li>libpango development libraries
c924c2c6 113 (Debian : libpango1.0, libpango1.0-dev)
114 (Fedora : pango, pango-devel)
633bc4a3 115<li>libc6 development librairies
c924c2c6 116 (Debian : libc6, libc6-dev)
117 (Fedora : glibc, glibc)
633bc4a3 118</ul>
c924c2c6 119
633bc4a3 120<li>Reminder/<li>
c924c2c6 121
633bc4a3 122See the list of compatibilities between LTTng, ltt-control and LTTV at :
123<a
124href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV
125versions compatibility</a>.
c924c2c6 126
127
128* Getting the LTTng packages
129
130su -
131mkdir /usr/src/lttng
132cd /usr/src/lttng
133(see http://ltt.polymtl.ca/lttng for package listing)
134wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
135bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
136
137
138* Getting LTTng kernel sources
139
140su -
141cd /usr/src
142wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
143bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
144cd linux-2.6.X
145- For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
146- For LTTng 0.9.5+ apply the patches in the order specified in the series file,
147 or use quilt
148cd ..
149mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
150
151
152* Installing a LTTng kernel
153
154su -
155cd /usr/src/linux-2.6.X-lttng-0.x.xx
156make menuconfig (or make xconfig or make config)
157 Select the < Help > button if you are not familiar with kernel
158 configuration.
159 Items preceded by [*] means they has to be built into the kernel.
160 Items preceded by [M] means they has to be built as modules.
161 Items preceded by [ ] means they should be removed.
162 go to the "General setup" section
163 Select the following options :
164 [*] Prompt for development and/or incomplete code/drivers
165 [*] Activate markers
166 [*] Activate userspace markers ABI (experimental, optional)
167 [*] Immediate value optimization (optional)
168 [*] Linux Trace Toolkit Next Generation (LTTng) --->
169 <M> or <*> Compile lttng tracing probes
170 <M> or <*> Linux Trace Toolkit High-speed Lockless Data Relay
171 <M> or <*> Linux Trace Toolkit Lock-Protected Data Relay
172 <M> or <*> Linux Trace Toolkit Serializer
173 <M> or <*> Linux Trace Toolkit Marker Control
174 <M> or <*> Linux Trace Toolkit Tracer
175 [*] Align Linux Trace Toolkit Traces
176 <M> or <*> Support logging events from userspace
177 [*] Support trace extraction from crash dump
178 <M> or <*> Linux Trace Toolkit Trace Controller
179 <M> or <*> Linux Trace Toolkit State Dump
180 Select <Exit>
181 Select <Exit>
182 Select <Yes>
183make
184make modules_install
185(if necessary, create a initrd with mkinitrd or your preferate alternative)
186(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
187
188-- on X86, X86_64
189make install
190reboot
191Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
192
193-- on PowerPC
194cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
195cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
196cp .config /boot/config-2.6.X-lttng-0.x.xx
197depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
198mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
199(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
200that comes first is the default kernel)
201ybin
202select the right entry at the yaboot prompt (see choices : tab, select : type
203the kernel name followed by enter)
204Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
205--
206
207
208
209* Editing the system wide configuration
210
211You must activate debugfs and specify a mount point. This is typically done in
212fstab such that it happens at boot time.
213
214If you have never used DebugFS before, these operation would do this for you :
215
216mkdir /mnt/debugfs
217cp /etc/fstab /etc/fstab.lttng.bkp
218echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
219
220then, rebooting or issuing the following command will activate debugfs :
221
222mount /mnt/debugfs
223
224You need to load the LTT modules to be able to control tracing from user
225space. This is done by issuing the following commands. Note however
226these commands load all LTT modules. Depending on what options you chose to
227compile statically, you may not need to issue all these commands.
228
229modprobe ltt-trace-control
230modprobe ltt-marker-control
231modprobe ltt-tracer
232modprobe ltt-serialize
233modprobe ltt-relay
234modprobe ipc-trace
235modprobe kernel-trace
236modprobe mm-trace
237modprobe net-trace
238modprobe fs-trace
239modprobe jbd2-trace
240modprobe ext4-trace
241modprobe syscall-trace
242modprobe trap-trace
243#if locking tracing is wanted, uncomment the following
244#modprobe lockdep-trace
245
246If you want to have complete information about the kernel state (including all
247the process names), you need to load the ltt-statedump module. This is done by
248issuing the command :
249
250modprobe ltt-statedump
251
252You can automate at boot time loading the ltt-control module by :
253
254cp /etc/modules /etc/modules.bkp
255echo ltt-trace-control >> /etc/modules
256echo ltt-marker-control >> /etc/modules
257echo ltt-tracer >> /etc/modules
258echo ltt-serialize >> /etc/modules
259echo ltt-relay >> /etc/modules
260echo ipc-trace >> /etc/modules
261echo kernel-trace >> /etc/modules
262echo mm-trace >> /etc/modules
263echo net-trace >> /etc/modules
264echo fs-trace >> /etc/modules
265echo jbd2-trace >> /etc/modules
266echo ext4-trace >> /etc/modules
267echo syscall-trace >> /etc/modules
268echo trap-trace >> /etc/modules
269#if locking tracing is wanted, uncomment the following
270#echo lockdep-trace >> /etc/modules
271
272
273* Getting and installing the ltt-control package (on the traced machine)
274(note : the ltt-control package contains lttd and lttctl. Although it has the
275same name as the ltt-control kernel module, they are *not* the same thing.)
276su -
277cd /usr/src
278wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
279gzip -cd ltt-control-0.x-xxxx2008.tar.gz | tar xvof -
280cd ltt-control-0.x-xxxx2006
281(refer to README to see the development libraries that must be installed on you
282system)
283./configure
284make
285make install
286
287
288* Userspace tracing
289
290Make sure you selected the kernel menuconfig option :
291 <M> or <*> Support logging events from userspace
292And that the ltt-userspace-event kernel module is loaded if selected as a
293module.
294
295Simple userspace tracing is available through
296echo "some text to record" > /mnt/debugfs/ltt/write_event
297
298It will appear in the trace under event :
299channel : userspace
300event name : event
301
302
303* Getting and installing the LTTV package (on the visualisation machine, same or
304 different from the visualisation machine)
305
306su -
307cd /usr/src
308wget http://ltt.polymtl.ca/packages/lttv-0.x.xx-xxxx2008.tar.gz
309gzip -cd lttv-0.x.xx-xxxx2008.tar.gz | tar xvof -
310cd lttv-0.x.xx-xxxx2008
311(refer to README to see the development libraries that must be installed on your
312system)
313./configure
314make
315make install
316
317
318* Getting and installing the markers-userspace package for user space tracing
319(experimental)
320See http://ltt.polymtl.ca/packages/markers-userspace-0.5.tar.bz2 or more recent.
321
322
323
324***********************************************************
325** Section 3 * Using LTTng and LTTV **
326***********************************************************
327
328* IMPORTANT : Arm Linux Kernel Markers after each boot
329
330ltt-armall
331
332* Use graphical LTTV to control tracing and analyse traces
333
334lttv-gui (or /usr/local/bin/lttv-gui)
335 - Spot the "Tracing Control" icon : click on it
336 (it's a traffic light icon)
337 - enter the root password
338 - click "start"
339 - click "stop"
340 - Yes
341 * You should now see a trace
342
343* Use text mode LTTng to control tracing
344
345The tracing can be controlled from a terminal by using the lttctl command (as
346root).
347
348Start tracing :
349
350lttctl -C -w /tmp/trace1 trace1
351
352Stop tracing and destroy trace channels :
353
354lttctl -D trace1
355
356see lttctl --help for details.
357
358(note : to see if the buffers has been filled, look at the dmesg output after
359lttctl -R or after stopping tracing from the GUI, it will show an event lost
360count. If it is the case, try using larger buffers. See lttctl --help to learn
361how. lttv now also shows event lost messages in the console when loading a trace
362with missing events or lost subbuffers.)
363
364* Use text mode LTTV
365
366Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
367graphical plugins available.
368
369For example, a simple trace dump in text format is available with :
370
371lttv -m textDump -t /tmp/trace
372
373see lttv -m textDump --help for detailed command line options of textDump.
374
375It is, in the current state of the project, very useful to use "grep" on the
376text output to filter by specific event fields. You can later copy the timestamp
377of the events to the clipboard and paste them in the GUI by clicking on the
378bottom right label "Current time". Support for this type of filtering should
379be added to the filter module soon.
380
381* Hybrid mode
382
383Starting from LTTng 0.5.105 and ltt-control 0.20, a new mode can be used :
384hybrid. It can be especially useful when studying big workloads on a long period
385of time.
386
387When using this mode, the most important, low rate control information will be
388recorded during all the trace by lttd (i.e. process creation/exit). The high
389rate information (i.e. interrupt/traps/syscall entry/exit) will be kept in a
390flight recorder buffer (now named flight-channelname_X).
391
392The following lttctl commands take an hybrid trace :
393
394Create trace channel, start lttd on normal channels, start tracing:
395lttctl -C -w /tmp/trace2 -o channel.kernel.overwrite=1 trace2
396
397Stop tracing, start lttd on flight recorder channels, destroy trace channels :
398lttctl -D -w /tmp/trace2 trace2
399
400Each "overwrite" channel is flight recorder channel.
401
402* Flight recorder mode
403
404The flight recorder mode writes data into overwritten buffers for all channels,
405including control channels, except for the facilities tracefiles. It consists of
406setting all channels to "overwrite".
407
408The following lttctl commands take a flight recorder trace :
409
410lttctl -C -w /tmp/trace3 -o channel.all.overwrite=1 trace3
411...
412lttctl -D -w /tmp/trace3 trace3
413
414
415**************************************************************
416** Section 4 * Adding new instrumentations with the markers **
417**************************************************************
418
419See Documentation/markers.txt and Documentation/tracepoints.txt in your kernel
420tree.
421
422* Add new events to userspace programs with userspace markers
423http://ltt.polymtl.ca/packages/
424
425Get the latest markers-userspace-*.tar.bz2 and see the Makefile and examples. It
426allows inserting markers in executables and libraries, currently only on x86_32
427and x86_64.
428
633bc4a3 429***********************************************************
430** Section 5 * Creating Debian or RPM packages **
431***********************************************************
432
433* Create custom LTTV Debian packages
434
435Use : dpkg-buildpackage -rfakeroot
436
437You should then have your LTTV .deb files created for your architecture.
438
439* Create custom LTTng packages
440
441For building LTTng Debian packages :
442
443Get the build tree with patches applies as explained in section 2.
444
445make menuconfig (or xconfig or config) (customize your configuration)
446make-kpkg kernel_image
447
448You will then see your freshly created .deb in /usr/src. Install it with
449dpkg -i /usr/src/(image-name).deb
450
451Then, follow the section "Editing the system wide configuration" in section 2.
452
453
454
c924c2c6 455 </body>
456</html>
This page took 0.039584 seconds and 4 git commands to generate.