update LTT viewing tools README
[lttv.git] / ltt / branches / poly / QUICKSTART
CommitLineData
d9cd3a2e 1
2QUICKSTART
3
4How to use LTTng and LTTV in a few lines :
5
6c913994 6This document is made of four parts : The first one explains how to install
7LTTng and LTTV from Debian and RPM binary packages, the second one explains how
8to install LTTng and LTTV from sources and the third one describes the steps
9to follow to trace a system and view it. The fourth and last part explains
208a5623 10briefly how to add a new trace point to the kernel and to user space
11applications.
6c913994 12
208a5623 13What you will typically want is to read sections 2 and 3 : install LTTng from
14sources and use it.
6c913994 15
b70ceef8 16These operations are made for installing the LTTng 0.6.X tracer on a
3c3abcf1 17linux 2.6.X kernel. You will also find instructions for installation of
18LTTV 0.8.x : the Linux Trace Toolkit Viewer.
19
20To see the list of compatibilities between LTTng, ltt-control, LTTV, genevent
208a5623 21and ltt-usertrace, please refer to :
3c3abcf1 22http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
23
24
38e8e662 25
26The following lttng patch is necessary to have the tracing hooks in the kernel.
27The following ltt-control module controls the tracing.
28
29Required programs and librairies are assumed to be automatically installed in an
30installation with Debian or RPM packages. In the case of an installation from
31sources, the dependencies are listed.
32
d9cd3a2e 33
c96be0d0 34** Current development status **
35
36LTTng :
37supported architectures :
38Intel Pentium (UP/SMP) with TSC
e3b182e5 39PowerPC 32 and 64 bits
2a4c796f 40ARM
2b75fbd7 41x86_64
285468d4 42C2 Microsystems (variant of MIPS)
c96be0d0 43
44LTTV :
45supported architectures :
46Intel i386 and better
d21695ed 47Intel 64 bits
e3b182e5 48PowerPC 32 and 64 bits
c96be0d0 49
50
51
af88bd8a 52Author : Mathieu Desnoyers, September 2005
208a5623 53Last update : May 30, 2006
d9cd3a2e 54
6c913994 55
56***********************************************************
57** Section 1 * Installation from Debian or RPM packages **
58***********************************************************
59
d21695ed 60** NOTE : RPM and debian packages are only made once a version has been
61 thoroughly tested. If they do not exist at the moment, please install from
208a5623 62 sources (see section 2 below). To see the list of compatibilities between
63 LTTng, ltt-control, LTTV, genevent and lttng-modules, please refer to
64 http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
d21695ed 65
66
c1298250 67* Install from RPM packages on Fedora Core 4 :
68
69Get LTTV RPM from :
70
71http://ltt.polymtl.ca/packages/fedora/RPMS
72
8c7a7394 73LTTV RPM are ready.
74
75LTTng kernel and lttng-modules RPM are available for some architectures (i586,
76i686). Feel free to help fix the spec files to have correct lttng-modules RPM
77package.
c1298250 78
79
80* Install from Deb packages on Debian :
6a2c1aed 81
82You can use the ltt.polymtl.ca apt source to get LTTV for Debian :
83
84Add the following two sources to your /etc/apt/sources.list :
85
86deb http://ltt.polymtl.ca/packages/debian experimental main
87deb-src http://ltt.polymtl.ca/packages/debian experimental main
88
5694ce4d 89
90* Install from precompiled binary packages (LTTV compiled only for i386, and
91 LTTng only for i686 smp), perform the following :
6a2c1aed 92
93su -
94apt-get update
95apt-get install lttv lttv-doc
8c7a7394 96apt-get install kernel-image-2.6.12-rc4-mm2-lttng-0.4.2
97apt-get install lttng-modules-modules-2.6.12-rc4-mm2-lttng-0.4.2
6a2c1aed 98 * note : the packages are signed by myself. I am not considered a trusted
99 Debian source yet, so warnings are normal.
100
5694ce4d 101Then, follow the section "Editing the system wide configuration" in section 2.
102
103* Create custom LTTV Debian packages
104
105Binary packages are only available for i386. If you want to create your own LTTV
106packages for other platforms, do :
6a2c1aed 107
5694ce4d 108su -
109cd /usr/src
78d521e3 110apt-get source lttv
8c7a7394 111cd lttv-0.6.9
78d521e3 112dpkg-buildpackage -rfakeroot
113
5694ce4d 114You should then have your LTTV .deb files created for your architecture.
115
116* Create custom LTTng packages
117
118For building LTTng Debian packages :
119
120su -
8c7a7394 121apt-get install kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 122cd /usr/src
8c7a7394 123bzip2 -cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2.tar.bz2 | tar xvof -
124cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 125make menuconfig (or xconfig or config) (customize your configuration)
126make-kpkg kernel_image
127
128You will then see your freshly created .deb in /usr/src. Install it with
129dpkg -i /usr/src/(image-name).deb
130
131You will also need to create a package for the lttng-modules :
132
133su -
134cd /usr/src
135apt-get source lttng-modules
8c7a7394 136cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
5694ce4d 137make-kpkg --added_modules /usr/src/lttng-modules-0.3 modules_image
138
139You will then see your freshly created .deb in /usr/src. Install it with
140dpkg -i /usr/src/lttng-modules-modules-(your version).deb
141
6c913994 142
5694ce4d 143Then, follow the section "Editing the system wide configuration" in section 2.
6c913994 144
145
146***********************************************************
147** Section 2 * Installation from sources **
148***********************************************************
149
38e8e662 150* Prerequisites
151
152Tools needed to follow the package download steps :
153
154o wget
155o bzip2
156o gzip
157o tar
158
159You have to install the standard development librairies and programs necessary
160to compile a kernel :
161
162(from Documentation/Changes in the Linux kernel tree)
163o Gnu C 2.95.3 # gcc --version
164o Gnu make 3.79.1 # make --version
165o binutils 2.12 # ld -v
166o util-linux 2.10o # fdformat --version
167o module-init-tools 0.9.10 # depmod -V
168
169You might also want to have libncurses5 to have the text mode kernel
170configuration menu, but there are alternatives.
171
3c3abcf1 172Prerequisites for LTTV 0.x.x installation are :
38e8e662 173
860c0a03 174gcc 3.2 or better
175gtk 2.4 or better development libraries
176 (Debian : libgtk2.0, libgtk2.0-dev)
177 (Fedora : gtk2, gtk2-devel)
178 note : For Fedora users : this might require at least core 3 from Fedora,
179 or you might have to compile your own GTK2 library.
180glib 2.4 or better development libraries
181 (Debian : libglib2.0-0, libglib2.0-dev)
182 (Fedora : glib2, glib2-devel)
183libpopt development libraries
184 (Debian : libpopt0, libpopt-dev)
185 (Fedora : popt)
186libpango development libraries
187 (Debian : libpango1.0, libpango1.0-dev)
188 (Fedora : pango, pango-devel)
189libc6 development librairies
190 (Debian : libc6, libc6-dev)
191 (Fedora : glibc, glibc)
38e8e662 192
193
d9cd3a2e 194* Getting the LTTng packages
195
196su -
197mkdir /usr/src/lttng
198cd /usr/src/lttng
199(see http://ltt.polymtl.ca/lttng for package listing)
208a5623 200wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
201bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
d9cd3a2e 202
203
204* Getting LTTng kernel sources
205
206su -
207cd /usr/src
52a20c2e 208wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
208a5623 209bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
210cd linux-2.6.X
cee587c3 211- For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
212- For LTTng 0.9.5+ apply the patches in the order specified in the series file,
213 or use quilt
d9cd3a2e 214cd ..
208a5623 215mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
d9cd3a2e 216
217
218* Installing a LTTng kernel
219
220su -
208a5623 221cd /usr/src/linux-2.6.X-lttng-0.x.xx
38e8e662 222make menuconfig (or make xconfig or make config)
223 Select the < Help > button if you are not familiar with kernel
224 configuration.
225 Items preceded by [*] means they has to be built into the kernel.
226 Items preceded by [M] means they has to be built as modules.
227 Items preceded by [ ] means they should be removed.
d21695ed 228 go to the "Instrumentation Support" section
38e8e662 229 Select the following options :
230 [*] Linux Trace Toolkit Instrumentation Support
d21695ed 231 <M> or <*> Linux Trace Toolkit Tracer
b70ceef8 232 <M> or <*> Linux Trace Toolkit Relay+DebugFS Support
8ede3ed9 233 It makes no difference for the rest of the procedure whether the Tracer
234 is compiled built-in or as a module.
d21695ed 235 activate :
236 [*] Align Linux Trace Toolkit Traces
3c3abcf1 237 [*] Allow tracing from userspace
b70ceef8 238 <M> Linux Trace Toolkit Netlink Controller
239 <M> Linux Trace Toolkit State Dump
3c3abcf1 240 your choice (see < Help >) :
38e8e662 241 [ ] Activate Linux Trace Toolkit Heartbeat Timer
b70ceef8 242 You may or may not decide to compile probes. Afterward, you will have to
243 load the probe modules to enable tracing of their events. The probes
244 automatically select the appropriate facilities.
245 Static instrumentation is a more invasive type of instrumentation that gives
246 the address taking a lock or doing a printk.
247 Select <Exit>
38e8e662 248 Select <Exit>
249 Select <Yes>
02bc6879 250make
26d45a39 251make modules_install
e55d936e 252(if necessary, create a initrd with mkinitrd or your preferate alternative)
253(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
916ec268 254
208a5623 255-- on X86, X86_64
256make install
d9cd3a2e 257reboot
620920a8 258Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 259
260-- on PowerPC
3c8a1f17 261cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
208a5623 262cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
263cp .config /boot/config-2.6.X-lttng-0.x.xx
264depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
265mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
266(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
267that comes first is the default kernel)
268ybin
269select the right entry at the yaboot prompt (see choices : tab, select : type
270the kernel name followed by enter)
620920a8 271Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
208a5623 272--
d9cd3a2e 273
d9cd3a2e 274
5694ce4d 275
276* Editing the system wide configuration
277
9c86b517 278You must activate debugfs and specify a mount point. This is typically done in
5694ce4d 279fstab such that it happens at boot time.
280
9c86b517 281If you have never used DebugFS before, these operation would do this for you :
5694ce4d 282
9c86b517 283mkdir /mnt/debugfs
5694ce4d 284cp /etc/fstab /etc/fstab.lttng.bkp
9c86b517 285echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
5694ce4d 286
9c86b517 287then, rebooting or issuing the following command will activate debugfs :
5694ce4d 288
9c86b517 289mount /mnt/debugfs
5694ce4d 290
b70ceef8 291You need to load the LTT modules to be able to control tracing from user
38e8e662 292space. This is done by issuing the command :
8ede3ed9 293
d9cd3a2e 294modprobe ltt-control
72013e40 295modprobe ltt-core
296modprobe ltt-relay
b70ceef8 297modprobe ltt-tracer
298modprobe ltt-probe-mm
299modprobe ltt-probe-kernel
300modprobe ltt-probe-i386 (or x86_64, powerpc, ppc, arm, mips)
301modprobe ltt-probe-net
302modprobe ltt-probe-list
303modprobe ltt-probe-ipc
304modprobe ltt-probe-fs
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
72013e40 316echo ltt-core >> /etc/modules
317echo ltt-relay >> /etc/modules
b70ceef8 318echo ltt-tracer >> /etc/modules
319echo ltt-probe-mm >> /etc/modules
320echo ltt-probe-kernel >> /etc/modules
321echo ltt-probe-i386 >> /etc/modules (or x86_64, powerpc, ppc, arm, mips)
322echo ltt-probe-net >> /etc/modules
323echo ltt-probe-list >> /etc/modules
324echo ltt-probe-ipc >> /etc/modules
325echo ltt-probe-fs >> /etc/modules
9c78dc8f 326echo ltt-statedump >> /etc/modules
d9cd3a2e 327
b70ceef8 328(note : if you want to probe a marker which is within a module, make sure you
329load the probe _after_ the module, otherwise the probe will not be able to
330connect itself to the marker.)
331
d9cd3a2e 332
daa38dd5 333* Getting and installing the ltt-control package (on the traced machine)
3bef9a5f 334(note : the ltt-control package contains lttd and lttctl. Although it has the
335same name as the ltt-control kernel module, they are *not* the same thing.)
d9cd3a2e 336su -
337cd /usr/src
3c3abcf1 338wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
339gzip -cd ltt-control-0.x-xxxx2006.tar.gz | tar xvof -
340cd ltt-control-0.x-xxxx2006
daa38dd5 341(refer to README to see the development libraries that must be installed on you
342system)
343./configure
344make
345make install
346
208a5623 347* Getting and installing the ltt-usertrace package for user space tracing
348See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
349
daa38dd5 350
351* Getting and installing the LTTV package (on the visualisation machine, same or
352 different from the visualisation machine)
353
354su -
355cd /usr/src
3c3abcf1 356wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz
357gzip -cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz | tar xvof -
358cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006
36fcd0b7 359(refer to README to see the development libraries that must be installed on you
360system)
d9cd3a2e 361./configure
362make
363make install
364
6c913994 365
366
367
368***********************************************************
d1f19ac5 369** Section 3 * Using LTTng and LTTV **
6c913994 370***********************************************************
371
d1f19ac5 372* Use graphical LTTV to control tracing and analyse traces
d9cd3a2e 373
374lttv-gui (or /usr/local/bin/lttv-gui)
e44b6048 375 - Spot the "Tracing Control" icon : click on it
376 (it's a traffic light icon)
d9cd3a2e 377 - enter the root password
378 - click "start"
379 - click "stop"
380 - Yes
381 * You should now see a trace
382
d1f19ac5 383* Use text mode LTTng to control tracing
384
5e5b1de1 385The tracing can be controlled from a terminal by using the lttctl command (as
386root).
d1f19ac5 387
388Start tracing :
389
9c86b517 390lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
d1f19ac5 391
392Stop tracing and destroy trace channels :
393
394lttctl -n trace -R
395
396see lttctl --help for details.
397
b70ceef8 398(note : to see if the buffers has been filled, look at the dmesg output after
399lttctl -R or after stopping tracing from the GUI, it will show an event lost
400count. If it is the case, try using larger buffers. See lttctl --help to learn
401how.)
d1f19ac5 402
6c913994 403* Use text mode LTTV
404
e55d936e 405Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
6c913994 406graphical plugins available.
407
408For example, a simple trace dump in text format is available with :
409
410lttv -m textDump -t /tmp/trace
411
412see lttv -m textDump --help for detailed command line options of textDump.
413
b70ceef8 414It is, in the current state of the project, very useful to use "grep" on the
415text output to filter by specific event fields. You can later copy the timestamp
416of the events to the clipboard and paste them in the GUI by clicking on the
417bottom right label "Current time". Support for this type of filtering should
418be added to the filter module soon.
6c913994 419
420
421***********************************************************
422** Section 4 * Adding new instrumentations with genevent **
423***********************************************************
d9cd3a2e 424
425* Getting and installing genevent
426
cb598ad7 427su -
d9cd3a2e 428cd /usr/src
3c3abcf1 429wget http://ltt.polymtl.ca/packages/genevent-0.xx.tar.gz
430gzip -cd genevent-0.xx.tar.gz | tar xvof -
431cd genevent-0.xx
d9cd3a2e 432make
433make install
434
435
ad7234c2 436* Add new events to the kernel with genevent (deprecated in LTTng 0.9.x)
d9cd3a2e 437
438su -
b70ceef8 439cd /usr/local/share/ltt-control/facilities
d9cd3a2e 440cp process.xml yourfacility.xml
441 * edit yourfacility.xml to fit your needs.
442cd /tmp
b70ceef8 443/usr/local/bin/genevent /usr/local/share/ltt-control/facilities/yourfacility.xml
d9cd3a2e 444cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
b70ceef8 445 /usr/src/linux-2.6.17-lttng-0.x.xx8/include/ltt
d9cd3a2e 446cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
b70ceef8 447 /usr/src/linux-2.6.17-lttng-0.x.xx/ltt/facilities
448 * edit the kernel file you want to instrument to add a marker to it. See
449 include/linux/marker.h.
450 * create a dynamically loadable probe. See ltt/probes for examples. The probe
451 will be connected to your marker and will typically call the logging
452 functions found in the header file you created with genevent.
453
ad7234c2 454* Add new kernel events
455
456*Important* note : in its current state, LTTng and LTTV needs the programmer
457to keep the marker/probe format string and the XML description of the
458event data types in sync by hand. Failure to do so will result in errors in
459LTTV.
460
461See the markers documentation to see how to describe the marker. You will need
462to clone probe modules found in ltt/probes to connect them to the markers so
463that the information can be recorded in the trace.
464
208a5623 465* Add new events to userspace programs with genevent
466See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
467
ad7234c2 468User-space tracing still uses genevent, which is subject to change in a near
469future.
208a5623 470
d9cd3a2e 471
472
This page took 0.054789 seconds and 4 git commands to generate.