update compat/
[lttv.git] / trunk / lttv / QUICKSTART
CommitLineData
a469681d 1Linux Trace Toolkit Quickstart
2------------------------------
3Author : Mathieu Desnoyers, September 2005
f70523d4 4Last update : July 31, 2008
d9cd3a2e 5
d9cd3a2e 6
a469681d 7This document is made of four parts : the first one explains how to install
6c913994 8LTTng and LTTV from Debian and RPM binary packages, the second one explains how
9to install LTTng and LTTV from sources and the third one describes the steps
10to follow to trace a system and view it. The fourth and last part explains
208a5623 11briefly how to add a new trace point to the kernel and to user space
12applications.
6c913994 13
208a5623 14What you will typically want is to read sections 2 and 3 : install LTTng from
15sources and use it.
6c913994 16
f70523d4 17These operations are made for installing the LTTng 0.12 tracer on a linux 2.6.X
18kernel. You will also find instructions for installation of LTTV 0.8.x : the
19Linux Trace Toolkit Viewer.
3c3abcf1 20
839a3ec6 21To see the list of compatibilities between LTTng, ltt-control, LTTV and
22markers-userspace, please refer to :
3c3abcf1 23http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
24
25
38e8e662 26
27The following lttng patch is necessary to have the tracing hooks in the kernel.
28The following ltt-control module controls the tracing.
29
a469681d 30Required programs and libraries are assumed to be automatically installed in an
38e8e662 31installation with Debian or RPM packages. In the case of an installation from
32sources, the dependencies are listed.
33
d9cd3a2e 34
c96be0d0 35** Current development status **
36
37LTTng :
38supported architectures :
39Intel Pentium (UP/SMP) with TSC
e3b182e5 40PowerPC 32 and 64 bits
2a4c796f 41ARM
2b75fbd7 42x86_64
285468d4 43C2 Microsystems (variant of MIPS)
c96be0d0 44
45LTTV :
46supported architectures :
47Intel i386 and better
d21695ed 48Intel 64 bits
e3b182e5 49PowerPC 32 and 64 bits
c96be0d0 50
51
6c913994 52***********************************************************
53** Section 1 * Installation from Debian or RPM packages **
54***********************************************************
55
5694ce4d 56* Create custom LTTV Debian packages
57
839a3ec6 58Use : dpkg-buildpackage -rfakeroot
78d521e3 59
5694ce4d 60You should then have your LTTV .deb files created for your architecture.
61
62* Create custom LTTng packages
63
64For building LTTng Debian packages :
65
839a3ec6 66Get the build tree with patches applies as explained in section 2.
67
5694ce4d 68make menuconfig (or xconfig or config) (customize your configuration)
69make-kpkg kernel_image
70
71You will then see your freshly created .deb in /usr/src. Install it with
72dpkg -i /usr/src/(image-name).deb
73
5694ce4d 74Then, follow the section "Editing the system wide configuration" in section 2.
6c913994 75
76
77***********************************************************
78** Section 2 * Installation from sources **
79***********************************************************
80
38e8e662 81* Prerequisites
82
83Tools needed to follow the package download steps :
84
85o wget
86o bzip2
87o gzip
88o tar
89
a469681d 90You have to install the standard development libraries and programs necessary
38e8e662 91to compile a kernel :
92
93(from Documentation/Changes in the Linux kernel tree)
94o Gnu C 2.95.3 # gcc --version
95o Gnu make 3.79.1 # make --version
96o binutils 2.12 # ld -v
97o util-linux 2.10o # fdformat --version
98o module-init-tools 0.9.10 # depmod -V
99
100You might also want to have libncurses5 to have the text mode kernel
101configuration menu, but there are alternatives.
102
3c3abcf1 103Prerequisites for LTTV 0.x.x installation are :
38e8e662 104
860c0a03 105gcc 3.2 or better
106gtk 2.4 or better development libraries
107 (Debian : libgtk2.0, libgtk2.0-dev)
108 (Fedora : gtk2, gtk2-devel)
109 note : For Fedora users : this might require at least core 3 from Fedora,
110 or you might have to compile your own GTK2 library.
111glib 2.4 or better development libraries
112 (Debian : libglib2.0-0, libglib2.0-dev)
113 (Fedora : glib2, glib2-devel)
114libpopt development libraries
115 (Debian : libpopt0, libpopt-dev)
116 (Fedora : popt)
117libpango development libraries
118 (Debian : libpango1.0, libpango1.0-dev)
119 (Fedora : pango, pango-devel)
120libc6 development librairies
121 (Debian : libc6, libc6-dev)
122 (Fedora : glibc, glibc)
38e8e662 123
124
d9cd3a2e 125* Getting the LTTng packages
126
127su -
128mkdir /usr/src/lttng
129cd /usr/src/lttng
130(see http://ltt.polymtl.ca/lttng for package listing)
208a5623 131wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
132bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
d9cd3a2e 133
134
135* Getting LTTng kernel sources
136
137su -
138cd /usr/src
52a20c2e 139wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
208a5623 140bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
141cd linux-2.6.X
cee587c3 142- For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
143- For LTTng 0.9.5+ apply the patches in the order specified in the series file,
144 or use quilt
d9cd3a2e 145cd ..
208a5623 146mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
d9cd3a2e 147
148
149* Installing a LTTng kernel
150
151su -
208a5623 152cd /usr/src/linux-2.6.X-lttng-0.x.xx
38e8e662 153make menuconfig (or make xconfig or make config)
154 Select the < Help > button if you are not familiar with kernel
155 configuration.
156 Items preceded by [*] means they has to be built into the kernel.
157 Items preceded by [M] means they has to be built as modules.
158 Items preceded by [ ] means they should be removed.
fade4071 159 go to the "General setup" section
38e8e662 160 Select the following options :
fade4071 161 [*] Activate tracepoints
162 [*] Activate markers
163 [*] Activate userspace markers ABI
164 <*> Compile generic tracing probes
165 Linux Trace Toolkit --->
166 [LTTng fine-grained-timestamping]
38e8e662 167 [*] Linux Trace Toolkit Instrumentation Support
fade4071 168 <M> or <*> Linux Trace Toolkit Relay+DebugFS Support
169 <M> or <*> Linux Trace Toolkit Serializer
170 <M> or <*> Linux Trace Toolkit Marker Control
d21695ed 171 <M> or <*> Linux Trace Toolkit Tracer
fade4071 172 It makes no difference for the rest of the procedure whether the Tracer
173 is compiled built-in or as a module.
d21695ed 174 activate :
175 [*] Align Linux Trace Toolkit Traces
b70ceef8 176 <M> Linux Trace Toolkit Netlink Controller
177 <M> Linux Trace Toolkit State Dump
3c3abcf1 178 your choice (see < Help >) :
fade4071 179 [ ] Write heartbeat event to shrink traces
180 [ ] Support trace extraction from crash dump
b70ceef8 181 Select <Exit>
38e8e662 182 Select <Exit>
183 Select <Yes>
02bc6879 184make
26d45a39 185make modules_install
e55d936e 186(if necessary, create a initrd with mkinitrd or your preferate alternative)
187(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
916ec268 188
208a5623 189-- on X86, X86_64
190make install
d9cd3a2e 191reboot
620920a8 192Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 193
194-- on PowerPC
3c8a1f17 195cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
208a5623 196cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
197cp .config /boot/config-2.6.X-lttng-0.x.xx
198depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
199mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
200(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
201that comes first is the default kernel)
202ybin
203select the right entry at the yaboot prompt (see choices : tab, select : type
204the kernel name followed by enter)
620920a8 205Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 206--
d9cd3a2e 207
d9cd3a2e 208
5694ce4d 209
210* Editing the system wide configuration
211
9c86b517 212You must activate debugfs and specify a mount point. This is typically done in
5694ce4d 213fstab such that it happens at boot time.
214
9c86b517 215If you have never used DebugFS before, these operation would do this for you :
5694ce4d 216
9c86b517 217mkdir /mnt/debugfs
5694ce4d 218cp /etc/fstab /etc/fstab.lttng.bkp
9c86b517 219echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
5694ce4d 220
9c86b517 221then, rebooting or issuing the following command will activate debugfs :
5694ce4d 222
9c86b517 223mount /mnt/debugfs
5694ce4d 224
b70ceef8 225You need to load the LTT modules to be able to control tracing from user
a469681d 226space. This is done by issuing the following commands. Note however
227these commands load all LTT modules. Depending on what options you chose to
228compile statically, you may not need to issue all these commands.
8ede3ed9 229
d9cd3a2e 230modprobe ltt-control
fade4071 231modprobe ltt-marker-control
b70ceef8 232modprobe ltt-tracer
fade4071 233modprobe ltt-serialize
234modprobe ltt-relay
235modprobe ipc-trace
236modprobe kernel-trace
237modprobe mm-trace
238modprobe net-trace
239modprobe fs-trace
b93e9a1e 240#if locking tracing is wanted, uncomment the following
241#modprobe lockdep-trace
d9cd3a2e 242
9c78dc8f 243If you want to have complete information about the kernel state (including all
244the process names), you need to load the ltt-statedump module. This is done by
245issuing the command :
246
247modprobe ltt-statedump
248
38e8e662 249You can automate at boot time loading the ltt-control module by :
8ede3ed9 250
b70ceef8 251cp /etc/modules /etc/modules.bkp
d9cd3a2e 252echo ltt-control >> /etc/modules
fade4071 253echo ltt-marker-control >> /etc/modules
b70ceef8 254echo ltt-tracer >> /etc/modules
fade4071 255echo ltt-serialize >> /etc/modules
256echo ltt-relay >> /etc/modules
257echo ipc-trace >> /etc/modules
258echo kernel-trace >> /etc/modules
259echo mm-trace >> /etc/modules
260echo net-trace >> /etc/modules
261echo fs-trace >> /etc/modules
b93e9a1e 262#if locking tracing is wanted, uncomment the following
263#echo lockdep-trace >> /etc/modules
b70ceef8 264
d9cd3a2e 265
daa38dd5 266* Getting and installing the ltt-control package (on the traced machine)
3bef9a5f 267(note : the ltt-control package contains lttd and lttctl. Although it has the
268same name as the ltt-control kernel module, they are *not* the same thing.)
d9cd3a2e 269su -
270cd /usr/src
3c3abcf1 271wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
272gzip -cd ltt-control-0.x-xxxx2006.tar.gz | tar xvof -
273cd ltt-control-0.x-xxxx2006
daa38dd5 274(refer to README to see the development libraries that must be installed on you
275system)
276./configure
277make
278make install
279
fade4071 280* Getting and installing the markers-userspace package for user space tracing
281See http://ltt.polymtl.ca/packages/markers-userspace-0.5.tar.bz2 or more recent.
208a5623 282
daa38dd5 283
284* Getting and installing the LTTV package (on the visualisation machine, same or
285 different from the visualisation machine)
286
287su -
288cd /usr/src
839a3ec6 289wget http://ltt.polymtl.ca/packages/lttv-0.x.xx-xxxx2008.tar.gz
290gzip -cd lttv-0.x.xx-xxxx2008.tar.gz | tar xvof -
291cd lttv-0.x.xx-xxxx2008
a469681d 292(refer to README to see the development libraries that must be installed on your
36fcd0b7 293system)
d9cd3a2e 294./configure
295make
296make install
297
6c913994 298
299
300
301***********************************************************
d1f19ac5 302** Section 3 * Using LTTng and LTTV **
6c913994 303***********************************************************
304
839a3ec6 305* IMPORTANT : Arm Linux Kernel Markers after each boot
867d1aae 306
307ltt-armall
308
d1f19ac5 309* Use graphical LTTV to control tracing and analyse traces
d9cd3a2e 310
311lttv-gui (or /usr/local/bin/lttv-gui)
e44b6048 312 - Spot the "Tracing Control" icon : click on it
313 (it's a traffic light icon)
d9cd3a2e 314 - enter the root password
315 - click "start"
316 - click "stop"
317 - Yes
318 * You should now see a trace
319
d1f19ac5 320* Use text mode LTTng to control tracing
321
5e5b1de1 322The tracing can be controlled from a terminal by using the lttctl command (as
323root).
d1f19ac5 324
325Start tracing :
326
9c86b517 327lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
d1f19ac5 328
329Stop tracing and destroy trace channels :
330
331lttctl -n trace -R
332
333see lttctl --help for details.
334
b70ceef8 335(note : to see if the buffers has been filled, look at the dmesg output after
336lttctl -R or after stopping tracing from the GUI, it will show an event lost
337count. If it is the case, try using larger buffers. See lttctl --help to learn
338how.)
d1f19ac5 339
6c913994 340* Use text mode LTTV
341
e55d936e 342Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
6c913994 343graphical plugins available.
344
345For example, a simple trace dump in text format is available with :
346
347lttv -m textDump -t /tmp/trace
348
349see lttv -m textDump --help for detailed command line options of textDump.
350
b70ceef8 351It is, in the current state of the project, very useful to use "grep" on the
352text output to filter by specific event fields. You can later copy the timestamp
353of the events to the clipboard and paste them in the GUI by clicking on the
354bottom right label "Current time". Support for this type of filtering should
355be added to the filter module soon.
6c913994 356
ee33438f 357* Hybrid mode
d0acb5ae 358
359Starting from LTTng 0.5.105 and ltt-control 0.20, a new mode can be used :
360hybrid. It can be especially useful when studying big workloads on a long period
361of time.
362
363When using this mode, the most important, low rate control information will be
364recorded during all the trace by lttd (i.e. process creation/exit). The high
365rate information (i.e. interrupt/traps/syscall entry/exit) will be kept in a
366flight recorder buffer (now named flight-channelname_X).
367
368The following lttctl commands take an hybrid trace :
369
370Create trace channel, start lttd on normal channels, start tracing:
839a3ec6 371lttctl -n tracename -d -l /mnt/debugfs/ltt -t /tmp/trace1 -m hybrid
d0acb5ae 372
373Stop tracing, start lttd on flight recorder channels, destroy trace channels :
839a3ec6 374lttctl -n tracename -f -l /mnt/debugfs/ltt -t /tmp/trace1 -m hybrid
d0acb5ae 375
376
377We will need to tweak what we consider "important" medium rate events. For
378instance, thread branding events are actually considered a "high rate" event
379when it should be considered "medium rate". The same should apply for the
380state dump process enumeration.
381
ee33438f 382* Flight recorder mode
383
384The flight recorder mode writes data into overwritten buffers for all channels,
385including control channels, except for the facilities tracefiles.
386
387The following lttctl commands take a flight recorder trace :
388
b5134e9f 389lttctl -n trace -c -m flight
839a3ec6 390lttd -n -d -t /tmp/trace -c /mnt/debugfs/ltt/trace
69c2e8ab 391lttctl -n trace -s
b5134e9f 392.. do stuff
393lttctl -n trace -q
839a3ec6 394lttd -f -d -t /tmp/trace -c /mnt/debugfs/ltt/trace
b5134e9f 395lttctl -m trace -r
ee33438f 396
6c913994 397
839a3ec6 398**************************************************************
399** Section 4 * Adding new instrumentations with the markers **
400**************************************************************
d9cd3a2e 401
839a3ec6 402See Documentation/markers.txt and Documentation/tracepoints.txt in your kernel
403tree.
d9cd3a2e 404
839a3ec6 405* Add new events to userspace programs with userspace markers
406http://ltt.polymtl.ca/packages/
d9cd3a2e 407
839a3ec6 408Get the latest markers-userspace-*.tar.bz2 and see the Makefile and examples. It
409allows inserting markers in executables and libraries, currently only on x86_32
410and x86_64.
d9cd3a2e 411
This page took 0.060329 seconds and 4 git commands to generate.