added diskperformance plugin
[lttv.git] / ltt / branches / poly / QUICKSTART
... / ...
CommitLineData
1
2QUICKSTART
3
4How to use LTTng and LTTV in a few lines :
5
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
10briefly how to add a new trace point to the kernel.
11
12What you will typically want is to read sections 1 and 3 : install LTTng from
13binary packages and use it. If there are no packages ready for your system, you
14will have to install from sources (section 2) instead.
15
16These operations are made for installing the LTTng 0.4.2 tracer on a
17linux 2.6.12-rc4-mm2 kernel. You will also find instructions for installtion of
18LTTV 0.6.x : the Linux Trace Toolkit Viewer.
19
20At this point, the -mm tree of the kernel is used because it has RelayFS support
21in it. In a nearby future, a vanilla kernel 2.6.14 will be used, as RelayFS has
22been integrated in the linux 2.6.14-rc series.
23
24The following lttng patch is necessary to have the tracing hooks in the kernel.
25The following ltt-control module controls the tracing.
26
27Required programs and librairies are assumed to be automatically installed in an
28installation with Debian or RPM packages. In the case of an installation from
29sources, the dependencies are listed.
30
31
32** Current development status **
33
34LTTng :
35supported architectures :
36Intel Pentium (UP/SMP) with TSC
37
38LTTV :
39supported architectures :
40Intel i386 and better
41PowerPC
42
43
44
45Author : Mathieu Desnoyers, September 2005
46
47
48
49***********************************************************
50** Section 1 * Installation from Debian or RPM packages **
51***********************************************************
52
53* Install from RPM packages on Fedora Core 4 :
54
55Get LTTV RPM from :
56
57http://ltt.polymtl.ca/packages/fedora/RPMS
58
59No RPM packages for LTTng are ready yet.
60
61
62* Install from Deb packages on Debian :
63
64You can use the ltt.polymtl.ca apt source to get LTTV for Debian :
65
66Add the following two sources to your /etc/apt/sources.list :
67
68deb http://ltt.polymtl.ca/packages/debian experimental main
69deb-src http://ltt.polymtl.ca/packages/debian experimental main
70
71
72* Install from precompiled binary packages (LTTV compiled only for i386, and
73 LTTng only for i686 smp), perform the following :
74
75su -
76apt-get update
77apt-get install lttv lttv-doc
78apt-get install kernel-image-2.6.12-rc4-mm2-lttng-0.4.1
79apt-get install lttng-modules-modules-2.6.12-rc4-mm2-lttng-0.4.1
80 * note : the packages are signed by myself. I am not considered a trusted
81 Debian source yet, so warnings are normal.
82
83Then, follow the section "Editing the system wide configuration" in section 2.
84
85* Create custom LTTV Debian packages
86
87Binary packages are only available for i386. If you want to create your own LTTV
88packages for other platforms, do :
89
90su -
91cd /usr/src
92apt-get source lttv
93cd lttv-0.6.8
94dpkg-buildpackage -rfakeroot
95
96You should then have your LTTV .deb files created for your architecture.
97
98* Create custom LTTng packages
99
100For building LTTng Debian packages :
101
102su -
103apt-get install kernel-source-2.6.12-rc4-mm2-lttng-0.4.1
104cd /usr/src
105bzip2 -cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.1.tar.bz2 | tar xvof -
106cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.1
107make menuconfig (or xconfig or config) (customize your configuration)
108make-kpkg kernel_image
109
110You will then see your freshly created .deb in /usr/src. Install it with
111dpkg -i /usr/src/(image-name).deb
112
113You will also need to create a package for the lttng-modules :
114
115su -
116cd /usr/src
117apt-get source lttng-modules
118cd kernel-source-2.6.12-rc4-mm2-lttng-0.4.1
119make-kpkg --added_modules /usr/src/lttng-modules-0.3 modules_image
120
121You will then see your freshly created .deb in /usr/src. Install it with
122dpkg -i /usr/src/lttng-modules-modules-(your version).deb
123
124
125Then, follow the section "Editing the system wide configuration" in section 2.
126
127
128***********************************************************
129** Section 2 * Installation from sources **
130***********************************************************
131
132* Prerequisites
133
134Tools needed to follow the package download steps :
135
136o wget
137o bzip2
138o gzip
139o tar
140
141You have to install the standard development librairies and programs necessary
142to compile a kernel :
143
144(from Documentation/Changes in the Linux kernel tree)
145o Gnu C 2.95.3 # gcc --version
146o Gnu make 3.79.1 # make --version
147o binutils 2.12 # ld -v
148o util-linux 2.10o # fdformat --version
149o module-init-tools 0.9.10 # depmod -V
150
151You might also want to have libncurses5 to have the text mode kernel
152configuration menu, but there are alternatives.
153
154Prerequisites for LTTV 0.6.x installation are :
155
156gcc 3.2 or better
157gtk 2.4 or better development libraries
158 (Debian : libgtk2.0, libgtk2.0-dev)
159 (Fedora : gtk2, gtk2-devel)
160 note : For Fedora users : this might require at least core 3 from Fedora,
161 or you might have to compile your own GTK2 library.
162glib 2.4 or better development libraries
163 (Debian : libglib2.0-0, libglib2.0-dev)
164 (Fedora : glib2, glib2-devel)
165libpopt development libraries
166 (Debian : libpopt0, libpopt-dev)
167 (Fedora : popt)
168libpango development libraries
169 (Debian : libpango1.0, libpango1.0-dev)
170 (Fedora : pango, pango-devel)
171libc6 development librairies
172 (Debian : libc6, libc6-dev)
173 (Fedora : glibc, glibc)
174
175
176* Getting the LTTng packages
177
178su -
179mkdir /usr/src/lttng
180cd /usr/src/lttng
181(see http://ltt.polymtl.ca/lttng for package listing)
182wget http://ltt.polymtl.ca/lttng/lttng-modules-0.3.tar.bz2
183wget http://ltt.polymtl.ca/lttng/patch-2.6.12-rc4-mm2-lttng-0.4.2.tar.bz2
184bzip2 -cd lttng-modules-0.3.tar.bz2 | tar xvof -
185bzip2 -cd patch-2.6.12-rc4-mm2-lttng-0.4.2.tar.bz2 | tar xvof -
186
187
188* Getting LTTng kernel sources
189
190su -
191cd /usr/src
192wget http://kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.12-rc4.tar.bz2
193wget http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.12-rc4/2.6.12-rc4-mm2/2.6.12-rc4-mm2.bz2
194bzip2 -cd linux-2.6.12-rc4.tar.bz2 | tar xvof -
195cd linux-2.6.12-rc4
196bzip2 -cd ../2.6.12-rc4-mm2.bz2 | patch -p1
197cat /usr/src/lttng/patch-2.6.12-rc4-mm2-lttng-0.4.2-* | patch -p1
198cd ..
199mv linux-2.6.12-rc4 linux-2.6.12-rc4-mm2-lttng-0.4.2
200
201
202* Installing a LTTng kernel
203
204su -
205cd /usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2
206make menuconfig (or make xconfig or make config)
207 Select the < Help > button if you are not familiar with kernel
208 configuration.
209 Items preceded by [*] means they has to be built into the kernel.
210 Items preceded by [M] means they has to be built as modules.
211 Items preceded by [ ] means they should be removed.
212 go to the "General setup" section
213 Select the following options :
214 [*] Linux Trace Toolkit Instrumentation Support
215 [M] or [*] Linux Trace Toolkit Tracer
216 It makes no difference for the rest of the procedure whether the Tracer
217 is compiled built-in or as a module.
218 do NOT activate (not ready yet) :
219 [ ] Align Linux Trace Toolkit Traces
220 [ ] Activate Linux Trace Toolkit Heartbeat Timer
221 IMPORTANT : This is enabled by default : you must disable it!
222 Select <Exit>
223 Select <Exit>
224 Select <Yes>
225make
226make modules_install
227make install
228
229reboot
230
231 Select the Linux 2.6.12-rc4-mm2-lttng-0.4.2 kernel in your boot loader.
232
233
234* Install the ltt-modules
235
236su -
237cd /usr/src/lttng/lttng-modules-0.3
238KERNELDIR=/usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2 make
239KERNELDIR=/usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2 make modules_install
240
241
242* Editing the system wide configuration
243
244You must activate relayfs and specify a mount point. This is typically done in
245fstab such that it happens at boot time.
246
247If you have never used RelayFS before, these operation would do this for you :
248
249mkdir /mnt/relayfs
250cp /etc/fstab /etc/fstab.lttng.bkp
251echo "relayfs /mnt/relayfs relayfs rw 0 0" >> /etc/fstab
252
253then, rebooting or issuing the following command will activate relayfs :
254
255mount /mnt/relayfs
256
257You need to load the ltt-control module to be able to control tracing from user
258space. This is done by issuing the command :
259
260modprobe ltt-control
261
262You can automate at boot time loading the ltt-control module by :
263
264echo ltt-control >> /etc/modules
265
266
267* Getting and installing the LTTV package
268
269su -
270cd /usr/src
271wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.6.8-26092005.tar.gz
272gzip -cd LinuxTraceToolkitViewer-0.6.8-26092005.tar.gz | tar xvof -
273cd LinuxTraceToolkitViewer-0.6.8-26092005
274(refer to README to see the development libraries that must be installed on you
275system)
276./configure
277make
278make install
279
280
281
282
283***********************************************************
284** Section 3 * Using LTTng and LTTV **
285***********************************************************
286
287* Use graphical LTTV to control tracing and analyse traces
288
289lttv-gui (or /usr/local/bin/lttv-gui)
290 - Spot the "Tracing Control" icon : click on it
291 (it's a traffic light icon)
292 - enter the root password
293 - click "start"
294 - click "stop"
295 - Yes
296 * You should now see a trace
297
298* Use text mode LTTng to control tracing
299
300The tracing can be controlled from a terminal by using the lttctl command (as
301root).
302
303Start tracing :
304
305lttctl -n trace -d -l /mnt/relayfs/ltt -t /tmp/trace
306
307Stop tracing and destroy trace channels :
308
309lttctl -n trace -R
310
311see lttctl --help for details.
312
313
314* Use text mode LTTV
315
316Fell free to look in /usr/local/lib/lttv/plugins to see all the text and
317graphical plugins available.
318
319For example, a simple trace dump in text format is available with :
320
321lttv -m textDump -t /tmp/trace
322
323see lttv -m textDump --help for detailed command line options of textDump.
324
325
326
327
328***********************************************************
329** Section 4 * Adding new instrumentations with genevent **
330***********************************************************
331
332* Getting and installing genevent
333
334su -
335cd /usr/src
336wget http://ltt.polymtl.ca/packages/genevent-0.2.tar.gz
337gzip -cd genevent-0.2.tar.gz | tar xvof -
338cd genevent-0.2
339make
340make install
341
342
343* Add new events to the kernel with genevent
344
345su -
346cd /usr/local/share/LinuxTraceToolkitViewer/facilities
347cp process.xml yourfacility.xml
348 * edit yourfacility.xml to fit your needs.
349cd /tmp
350/usr/local/bin/genevent /usr/local/share/LinuxTraceToolkitViewer/yourfacility.xml
351cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
352 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2/include/linux/ltt
353cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
354 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2/ltt
355 * edit the kernel file you want to instrument
356 - Add #include <linux/ltt/ltt-facility-yourfacility.h> at the beginning
357 of the file.
358 - Add a call to the tracing functions. See their names and parameters in
359 /usr/src/linux-2.6.12-rc4-mm2-lttng-0.4.2/include/linux/ltt/ltt-facility-yourfacility.h
360
361
362
This page took 0.023245 seconds and 4 git commands to generate.