create directories branches, tags, trunk
[lttv.git] / ltt / branches / poly / 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
21To see the list of compatibilities between LTTng, ltt-control, LTTV, genevent
208a5623 22and ltt-usertrace, 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
a469681d 56** NOTE : RPM and Debian packages are only made once a version has been
d21695ed 57 thoroughly tested. If they do not exist at the moment, please install from
208a5623 58 sources (see section 2 below). To see the list of compatibilities between
59 LTTng, ltt-control, LTTV, genevent and lttng-modules, please refer to
60 http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
d21695ed 61
62
c1298250 63* Install from RPM packages on Fedora Core 4 :
64
65Get LTTV RPM from :
66
67http://ltt.polymtl.ca/packages/fedora/RPMS
68
8c7a7394 69LTTV RPM are ready.
70
71LTTng kernel and lttng-modules RPM are available for some architectures (i586,
72i686). Feel free to help fix the spec files to have correct lttng-modules RPM
73package.
c1298250 74
75
a469681d 76* Install from .deb packages on Debian :
6a2c1aed 77
78You can use the ltt.polymtl.ca apt source to get LTTV for Debian :
79
80Add the following two sources to your /etc/apt/sources.list :
81
82deb http://ltt.polymtl.ca/packages/debian experimental main
83deb-src http://ltt.polymtl.ca/packages/debian experimental main
84
5694ce4d 85
86* Install from precompiled binary packages (LTTV compiled only for i386, and
87 LTTng only for i686 smp), perform the following :
6a2c1aed 88
89su -
90apt-get update
91apt-get install lttv lttv-doc
8c7a7394 92apt-get install kernel-image-2.6.12-rc4-mm2-lttng-0.4.2
93apt-get install lttng-modules-modules-2.6.12-rc4-mm2-lttng-0.4.2
6a2c1aed 94 * note : the packages are signed by myself. I am not considered a trusted
95 Debian source yet, so warnings are normal.
96
5694ce4d 97Then, follow the section "Editing the system wide configuration" in section 2.
98
99* Create custom LTTV Debian packages
100
101Binary packages are only available for i386. If you want to create your own LTTV
102packages for other platforms, do :
6a2c1aed 103
5694ce4d 104su -
105cd /usr/src
78d521e3 106apt-get source lttv
8c7a7394 107cd lttv-0.6.9
78d521e3 108dpkg-buildpackage -rfakeroot
109
5694ce4d 110You should then have your LTTV .deb files created for your architecture.
111
112* Create custom LTTng packages
113
114For building LTTng Debian packages :
115
116su -
8c7a7394 117apt-get install kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 118cd /usr/src
8c7a7394 119bzip2 -cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2.tar.bz2 | tar xvof -
120cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 121make menuconfig (or xconfig or config) (customize your configuration)
122make-kpkg kernel_image
123
124You will then see your freshly created .deb in /usr/src. Install it with
125dpkg -i /usr/src/(image-name).deb
126
127You will also need to create a package for the lttng-modules :
128
129su -
130cd /usr/src
131apt-get source lttng-modules
8c7a7394 132cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 133make-kpkg --added_modules /usr/src/lttng-modules-0.3 modules_image
134
135You will then see your freshly created .deb in /usr/src. Install it with
136dpkg -i /usr/src/lttng-modules-modules-(your version).deb
137
6c913994 138
5694ce4d 139Then, follow the section "Editing the system wide configuration" in section 2.
6c913994 140
141
142***********************************************************
143** Section 2 * Installation from sources **
144***********************************************************
145
38e8e662 146* Prerequisites
147
148Tools needed to follow the package download steps :
149
150o wget
151o bzip2
152o gzip
153o tar
154
a469681d 155You have to install the standard development libraries and programs necessary
38e8e662 156to compile a kernel :
157
158(from Documentation/Changes in the Linux kernel tree)
159o Gnu C 2.95.3 # gcc --version
160o Gnu make 3.79.1 # make --version
161o binutils 2.12 # ld -v
162o util-linux 2.10o # fdformat --version
163o module-init-tools 0.9.10 # depmod -V
164
165You might also want to have libncurses5 to have the text mode kernel
166configuration menu, but there are alternatives.
167
3c3abcf1 168Prerequisites for LTTV 0.x.x installation are :
38e8e662 169
860c0a03 170gcc 3.2 or better
171gtk 2.4 or better development libraries
172 (Debian : libgtk2.0, libgtk2.0-dev)
173 (Fedora : gtk2, gtk2-devel)
174 note : For Fedora users : this might require at least core 3 from Fedora,
175 or you might have to compile your own GTK2 library.
176glib 2.4 or better development libraries
177 (Debian : libglib2.0-0, libglib2.0-dev)
178 (Fedora : glib2, glib2-devel)
179libpopt development libraries
180 (Debian : libpopt0, libpopt-dev)
181 (Fedora : popt)
182libpango development libraries
183 (Debian : libpango1.0, libpango1.0-dev)
184 (Fedora : pango, pango-devel)
185libc6 development librairies
186 (Debian : libc6, libc6-dev)
187 (Fedora : glibc, glibc)
38e8e662 188
189
d9cd3a2e 190* Getting the LTTng packages
191
192su -
193mkdir /usr/src/lttng
194cd /usr/src/lttng
195(see http://ltt.polymtl.ca/lttng for package listing)
208a5623 196wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
197bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
d9cd3a2e 198
199
200* Getting LTTng kernel sources
201
202su -
203cd /usr/src
52a20c2e 204wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
208a5623 205bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
206cd linux-2.6.X
cee587c3 207- For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
208- For LTTng 0.9.5+ apply the patches in the order specified in the series file,
209 or use quilt
d9cd3a2e 210cd ..
208a5623 211mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
d9cd3a2e 212
213
214* Installing a LTTng kernel
215
216su -
208a5623 217cd /usr/src/linux-2.6.X-lttng-0.x.xx
38e8e662 218make menuconfig (or make xconfig or make config)
219 Select the < Help > button if you are not familiar with kernel
220 configuration.
221 Items preceded by [*] means they has to be built into the kernel.
222 Items preceded by [M] means they has to be built as modules.
223 Items preceded by [ ] means they should be removed.
fade4071 224 go to the "General setup" section
38e8e662 225 Select the following options :
fade4071 226 [*] Activate tracepoints
227 [*] Activate markers
228 [*] Activate userspace markers ABI
229 <*> Compile generic tracing probes
230 Linux Trace Toolkit --->
231 [LTTng fine-grained-timestamping]
38e8e662 232 [*] Linux Trace Toolkit Instrumentation Support
fade4071 233 <M> or <*> Linux Trace Toolkit Relay+DebugFS Support
234 <M> or <*> Linux Trace Toolkit Serializer
235 <M> or <*> Linux Trace Toolkit Marker Control
d21695ed 236 <M> or <*> Linux Trace Toolkit Tracer
fade4071 237 It makes no difference for the rest of the procedure whether the Tracer
238 is compiled built-in or as a module.
d21695ed 239 activate :
240 [*] Align Linux Trace Toolkit Traces
b70ceef8 241 <M> Linux Trace Toolkit Netlink Controller
242 <M> Linux Trace Toolkit State Dump
3c3abcf1 243 your choice (see < Help >) :
fade4071 244 [ ] Write heartbeat event to shrink traces
245 [ ] Support trace extraction from crash dump
b70ceef8 246 Select <Exit>
38e8e662 247 Select <Exit>
248 Select <Yes>
02bc6879 249make
26d45a39 250make modules_install
e55d936e 251(if necessary, create a initrd with mkinitrd or your preferate alternative)
252(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
916ec268 253
208a5623 254-- on X86, X86_64
255make install
d9cd3a2e 256reboot
620920a8 257Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 258
259-- on PowerPC
3c8a1f17 260cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
208a5623 261cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
262cp .config /boot/config-2.6.X-lttng-0.x.xx
263depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
264mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
265(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
266that comes first is the default kernel)
267ybin
268select the right entry at the yaboot prompt (see choices : tab, select : type
269the kernel name followed by enter)
620920a8 270Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 271--
d9cd3a2e 272
d9cd3a2e 273
5694ce4d 274
275* Editing the system wide configuration
276
9c86b517 277You must activate debugfs and specify a mount point. This is typically done in
5694ce4d 278fstab such that it happens at boot time.
279
9c86b517 280If you have never used DebugFS before, these operation would do this for you :
5694ce4d 281
9c86b517 282mkdir /mnt/debugfs
5694ce4d 283cp /etc/fstab /etc/fstab.lttng.bkp
9c86b517 284echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
5694ce4d 285
9c86b517 286then, rebooting or issuing the following command will activate debugfs :
5694ce4d 287
9c86b517 288mount /mnt/debugfs
5694ce4d 289
b70ceef8 290You need to load the LTT modules to be able to control tracing from user
a469681d 291space. This is done by issuing the following commands. Note however
292these commands load all LTT modules. Depending on what options you chose to
293compile statically, you may not need to issue all these commands.
8ede3ed9 294
d9cd3a2e 295modprobe ltt-control
fade4071 296modprobe ltt-marker-control
b70ceef8 297modprobe ltt-tracer
fade4071 298modprobe ltt-serialize
299modprobe ltt-relay
300modprobe ipc-trace
301modprobe kernel-trace
302modprobe mm-trace
303modprobe net-trace
304modprobe fs-trace
d9cd3a2e 305
9c78dc8f 306If you want to have complete information about the kernel state (including all
307the process names), you need to load the ltt-statedump module. This is done by
308issuing the command :
309
310modprobe ltt-statedump
311
38e8e662 312You can automate at boot time loading the ltt-control module by :
8ede3ed9 313
b70ceef8 314cp /etc/modules /etc/modules.bkp
d9cd3a2e 315echo ltt-control >> /etc/modules
fade4071 316echo ltt-marker-control >> /etc/modules
b70ceef8 317echo ltt-tracer >> /etc/modules
fade4071 318echo ltt-serialize >> /etc/modules
319echo ltt-relay >> /etc/modules
320echo ipc-trace >> /etc/modules
321echo kernel-trace >> /etc/modules
322echo mm-trace >> /etc/modules
323echo net-trace >> /etc/modules
324echo fs-trace >> /etc/modules
b70ceef8 325
d9cd3a2e 326
daa38dd5 327* Getting and installing the ltt-control package (on the traced machine)
3bef9a5f 328(note : the ltt-control package contains lttd and lttctl. Although it has the
329same name as the ltt-control kernel module, they are *not* the same thing.)
d9cd3a2e 330su -
331cd /usr/src
3c3abcf1 332wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
333gzip -cd ltt-control-0.x-xxxx2006.tar.gz | tar xvof -
334cd ltt-control-0.x-xxxx2006
daa38dd5 335(refer to README to see the development libraries that must be installed on you
336system)
337./configure
338make
339make install
340
fade4071 341* Getting and installing the markers-userspace package for user space tracing
342See http://ltt.polymtl.ca/packages/markers-userspace-0.5.tar.bz2 or more recent.
208a5623 343
daa38dd5 344
345* Getting and installing the LTTV package (on the visualisation machine, same or
346 different from the visualisation machine)
347
348su -
349cd /usr/src
3c3abcf1 350wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz
351gzip -cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz | tar xvof -
352cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006
a469681d 353(refer to README to see the development libraries that must be installed on your
36fcd0b7 354system)
d9cd3a2e 355./configure
356make
357make install
358
6c913994 359
360
361
362***********************************************************
d1f19ac5 363** Section 3 * Using LTTng and LTTV **
6c913994 364***********************************************************
365
867d1aae 366* Arm Linux Kernel Markers after each boot
367
368ltt-armall
369
d1f19ac5 370* Use graphical LTTV to control tracing and analyse traces
d9cd3a2e 371
372lttv-gui (or /usr/local/bin/lttv-gui)
e44b6048 373 - Spot the "Tracing Control" icon : click on it
374 (it's a traffic light icon)
d9cd3a2e 375 - enter the root password
376 - click "start"
377 - click "stop"
378 - Yes
379 * You should now see a trace
380
d1f19ac5 381* Use text mode LTTng to control tracing
382
5e5b1de1 383The tracing can be controlled from a terminal by using the lttctl command (as
384root).
d1f19ac5 385
386Start tracing :
387
9c86b517 388lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
d1f19ac5 389
390Stop tracing and destroy trace channels :
391
392lttctl -n trace -R
393
394see lttctl --help for details.
395
b70ceef8 396(note : to see if the buffers has been filled, look at the dmesg output after
397lttctl -R or after stopping tracing from the GUI, it will show an event lost
398count. If it is the case, try using larger buffers. See lttctl --help to learn
399how.)
d1f19ac5 400
6c913994 401* Use text mode LTTV
402
e55d936e 403Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
6c913994 404graphical plugins available.
405
406For example, a simple trace dump in text format is available with :
407
408lttv -m textDump -t /tmp/trace
409
410see lttv -m textDump --help for detailed command line options of textDump.
411
b70ceef8 412It is, in the current state of the project, very useful to use "grep" on the
413text output to filter by specific event fields. You can later copy the timestamp
414of the events to the clipboard and paste them in the GUI by clicking on the
415bottom right label "Current time". Support for this type of filtering should
416be added to the filter module soon.
6c913994 417
ee33438f 418* Hybrid mode
d0acb5ae 419
420Starting from LTTng 0.5.105 and ltt-control 0.20, a new mode can be used :
421hybrid. It can be especially useful when studying big workloads on a long period
422of time.
423
424When using this mode, the most important, low rate control information will be
425recorded during all the trace by lttd (i.e. process creation/exit). The high
426rate information (i.e. interrupt/traps/syscall entry/exit) will be kept in a
427flight recorder buffer (now named flight-channelname_X).
428
429The following lttctl commands take an hybrid trace :
430
431Create trace channel, start lttd on normal channels, start tracing:
432lttctl -n tracename -d -l /mnt/relayfs/ltt -t /tmp/trace1 -m hybrid
433
434Stop tracing, start lttd on flight recorder channels, destroy trace channels :
435lttctl -n tracename -f -l /mnt/relayfs/ltt -t /tmp/trace1 -m hybrid
436
437
438We will need to tweak what we consider "important" medium rate events. For
439instance, thread branding events are actually considered a "high rate" event
440when it should be considered "medium rate". The same should apply for the
441state dump process enumeration.
442
ee33438f 443* Flight recorder mode
444
445The flight recorder mode writes data into overwritten buffers for all channels,
446including control channels, except for the facilities tracefiles.
447
448The following lttctl commands take a flight recorder trace :
449
b5134e9f 450lttctl -n trace -c -m flight
451lttd -n -d -t /tmp/trace -c /sys/kernel/debug/ltt
69c2e8ab 452lttctl -n trace -s
b5134e9f 453.. do stuff
454lttctl -n trace -q
455lttd -f -d -t /tmp/trace -c /sys/kernel/debug/ltt
456lttctl -m trace -r
ee33438f 457
6c913994 458
459***********************************************************
460** Section 4 * Adding new instrumentations with genevent **
461***********************************************************
d9cd3a2e 462
463* Getting and installing genevent
464
cb598ad7 465su -
d9cd3a2e 466cd /usr/src
3c3abcf1 467wget http://ltt.polymtl.ca/packages/genevent-0.xx.tar.gz
468gzip -cd genevent-0.xx.tar.gz | tar xvof -
469cd genevent-0.xx
d9cd3a2e 470make
471make install
472
473
ad7234c2 474* Add new events to the kernel with genevent (deprecated in LTTng 0.9.x)
d9cd3a2e 475
476su -
b70ceef8 477cd /usr/local/share/ltt-control/facilities
d9cd3a2e 478cp process.xml yourfacility.xml
479 * edit yourfacility.xml to fit your needs.
480cd /tmp
b70ceef8 481/usr/local/bin/genevent /usr/local/share/ltt-control/facilities/yourfacility.xml
d9cd3a2e 482cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
b70ceef8 483 /usr/src/linux-2.6.17-lttng-0.x.xx8/include/ltt
d9cd3a2e 484cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
b70ceef8 485 /usr/src/linux-2.6.17-lttng-0.x.xx/ltt/facilities
486 * edit the kernel file you want to instrument to add a marker to it. See
487 include/linux/marker.h.
488 * create a dynamically loadable probe. See ltt/probes for examples. The probe
489 will be connected to your marker and will typically call the logging
490 functions found in the header file you created with genevent.
491
ad7234c2 492* Add new kernel events
493
494*Important* note : in its current state, LTTng and LTTV needs the programmer
495to keep the marker/probe format string and the XML description of the
496event data types in sync by hand. Failure to do so will result in errors in
497LTTV.
498
499See the markers documentation to see how to describe the marker. You will need
500to clone probe modules found in ltt/probes to connect them to the markers so
501that the information can be recorded in the trace.
502
208a5623 503* Add new events to userspace programs with genevent
504See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
505
ad7234c2 506User-space tracing still uses genevent, which is subject to change in a near
507future.
This page took 0.061752 seconds and 4 git commands to generate.