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