update quickstart
[lttv.git] / ltt / branches / poly / QUICKSTART
... / ...
CommitLineData
1Linux Trace Toolkit Quickstart
2------------------------------
3Author : Mathieu Desnoyers, September 2005
4Last update : July 31, 2008
5
6
7This document is made of four parts : the first one explains how to install
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
11briefly how to add a new trace point to the kernel and to user space
12applications.
13
14What you will typically want is to read sections 2 and 3 : install LTTng from
15sources and use it.
16
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.
20
21To see the list of compatibilities between LTTng, ltt-control, LTTV, genevent
22and ltt-usertrace, please refer to :
23http://ltt.polymtl.ca > LTTng+LTTV versions compatibility
24
25
26
27The following lttng patch is necessary to have the tracing hooks in the kernel.
28The following ltt-control module controls the tracing.
29
30Required programs and libraries are assumed to be automatically installed in an
31installation with Debian or RPM packages. In the case of an installation from
32sources, the dependencies are listed.
33
34
35** Current development status **
36
37LTTng :
38supported architectures :
39Intel Pentium (UP/SMP) with TSC
40PowerPC 32 and 64 bits
41ARM
42x86_64
43C2 Microsystems (variant of MIPS)
44
45LTTV :
46supported architectures :
47Intel i386 and better
48Intel 64 bits
49PowerPC 32 and 64 bits
50
51
52***********************************************************
53** Section 1 * Installation from Debian or RPM packages **
54***********************************************************
55
56** NOTE : RPM and Debian packages are only made once a version has been
57 thoroughly tested. If they do not exist at the moment, please install from
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
61
62
63* Install from RPM packages on Fedora Core 4 :
64
65Get LTTV RPM from :
66
67http://ltt.polymtl.ca/packages/fedora/RPMS
68
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.
74
75
76* Install from .deb packages on Debian :
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
85
86* Install from precompiled binary packages (LTTV compiled only for i386, and
87 LTTng only for i686 smp), perform the following :
88
89su -
90apt-get update
91apt-get install lttv lttv-doc
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
94 * note : the packages are signed by myself. I am not considered a trusted
95 Debian source yet, so warnings are normal.
96
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 :
103
104su -
105cd /usr/src
106apt-get source lttv
107cd lttv-0.6.9
108dpkg-buildpackage -rfakeroot
109
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 -
117apt-get install kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
118cd /usr/src
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
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
132cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.2
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
138
139Then, follow the section "Editing the system wide configuration" in section 2.
140
141
142***********************************************************
143** Section 2 * Installation from sources **
144***********************************************************
145
146* Prerequisites
147
148Tools needed to follow the package download steps :
149
150o wget
151o bzip2
152o gzip
153o tar
154
155You have to install the standard development libraries and programs necessary
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
168Prerequisites for LTTV 0.x.x installation are :
169
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)
188
189
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)
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 -
198
199
200* Getting LTTng kernel sources
201
202su -
203cd /usr/src
204wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
205bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
206cd linux-2.6.X
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
210cd ..
211mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
212
213
214* Installing a LTTng kernel
215
216su -
217cd /usr/src/linux-2.6.X-lttng-0.x.xx
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.
224 go to the "General setup" section
225 Select the following options :
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]
232 [*] Linux Trace Toolkit Instrumentation Support
233 <M> or <*> Linux Trace Toolkit Relay+DebugFS Support
234 <M> or <*> Linux Trace Toolkit Serializer
235 <M> or <*> Linux Trace Toolkit Marker Control
236 <M> or <*> Linux Trace Toolkit Tracer
237 It makes no difference for the rest of the procedure whether the Tracer
238 is compiled built-in or as a module.
239 activate :
240 [*] Align Linux Trace Toolkit Traces
241 <M> Linux Trace Toolkit Netlink Controller
242 <M> Linux Trace Toolkit State Dump
243 your choice (see < Help >) :
244 [ ] Write heartbeat event to shrink traces
245 [ ] Support trace extraction from crash dump
246 Select <Exit>
247 Select <Exit>
248 Select <Yes>
249make
250make modules_install
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)
253
254-- on X86, X86_64
255make install
256reboot
257Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
258
259-- on PowerPC
260cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
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)
270Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
271--
272
273
274
275* Editing the system wide configuration
276
277You must activate debugfs and specify a mount point. This is typically done in
278fstab such that it happens at boot time.
279
280If you have never used DebugFS before, these operation would do this for you :
281
282mkdir /mnt/debugfs
283cp /etc/fstab /etc/fstab.lttng.bkp
284echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
285
286then, rebooting or issuing the following command will activate debugfs :
287
288mount /mnt/debugfs
289
290You need to load the LTT modules to be able to control tracing from user
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.
294
295modprobe ltt-control
296modprobe ltt-marker-control
297modprobe ltt-tracer
298modprobe ltt-serialize
299modprobe ltt-relay
300modprobe ipc-trace
301modprobe kernel-trace
302modprobe mm-trace
303modprobe net-trace
304modprobe fs-trace
305
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
312You can automate at boot time loading the ltt-control module by :
313
314cp /etc/modules /etc/modules.bkp
315echo ltt-control >> /etc/modules
316echo ltt-marker-control >> /etc/modules
317echo ltt-tracer >> /etc/modules
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
325
326
327* Getting and installing the ltt-control package (on the traced machine)
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.)
330su -
331cd /usr/src
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
335(refer to README to see the development libraries that must be installed on you
336system)
337./configure
338make
339make install
340
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.
343
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
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
353(refer to README to see the development libraries that must be installed on your
354system)
355./configure
356make
357make install
358
359
360
361
362***********************************************************
363** Section 3 * Using LTTng and LTTV **
364***********************************************************
365
366* Arm Linux Kernel Markers after each boot
367
368ltt-armall
369
370* Use graphical LTTV to control tracing and analyse traces
371
372lttv-gui (or /usr/local/bin/lttv-gui)
373 - Spot the "Tracing Control" icon : click on it
374 (it's a traffic light icon)
375 - enter the root password
376 - click "start"
377 - click "stop"
378 - Yes
379 * You should now see a trace
380
381* Use text mode LTTng to control tracing
382
383The tracing can be controlled from a terminal by using the lttctl command (as
384root).
385
386Start tracing :
387
388lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
389
390Stop tracing and destroy trace channels :
391
392lttctl -n trace -R
393
394see lttctl --help for details.
395
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.)
400
401* Use text mode LTTV
402
403Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
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
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.
417
418* Hybrid mode
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
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
450lttctl -n trace -c -m flight
451lttd -n -d -t /tmp/trace -c /sys/kernel/debug/ltt
452lttctl -n trace -s
453.. do stuff
454lttctl -n trace -q
455lttd -f -d -t /tmp/trace -c /sys/kernel/debug/ltt
456lttctl -m trace -r
457
458
459***********************************************************
460** Section 4 * Adding new instrumentations with genevent **
461***********************************************************
462
463* Getting and installing genevent
464
465su -
466cd /usr/src
467wget http://ltt.polymtl.ca/packages/genevent-0.xx.tar.gz
468gzip -cd genevent-0.xx.tar.gz | tar xvof -
469cd genevent-0.xx
470make
471make install
472
473
474* Add new events to the kernel with genevent (deprecated in LTTng 0.9.x)
475
476su -
477cd /usr/local/share/ltt-control/facilities
478cp process.xml yourfacility.xml
479 * edit yourfacility.xml to fit your needs.
480cd /tmp
481/usr/local/bin/genevent /usr/local/share/ltt-control/facilities/yourfacility.xml
482cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
483 /usr/src/linux-2.6.17-lttng-0.x.xx8/include/ltt
484cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
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
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
503* Add new events to userspace programs with genevent
504See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
505
506User-space tracing still uses genevent, which is subject to change in a near
507future.
This page took 0.024028 seconds and 4 git commands to generate.