update compat
[lttv.git] / tags / LinuxTraceToolkitViewer-0.10.0-pre-115102007 / QUICKSTART
CommitLineData
0bc7c2cd 1Linux Trace Toolkit Quickstart
2------------------------------
3Author : Mathieu Desnoyers, September 2005
4Last update : May 14, 2007
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.6.X tracer on a
18linux 2.6.X kernel. You will also find instructions for installation of
19LTTV 0.8.x : the Linux 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 "Instrumentation Support" section
225 Select the following options :
226 [*] Linux Trace Toolkit Instrumentation Support
227 <M> or <*> Linux Trace Toolkit Tracer
228 <M> or <*> Linux Trace Toolkit Relay+DebugFS Support
229 It makes no difference for the rest of the procedure whether the Tracer
230 is compiled built-in or as a module.
231 activate :
232 [*] Align Linux Trace Toolkit Traces
233 [*] Allow tracing from userspace
234 <M> Linux Trace Toolkit Netlink Controller
235 <M> Linux Trace Toolkit State Dump
236 your choice (see < Help >) :
237 [ ] Activate Linux Trace Toolkit Heartbeat Timer
238 You may or may not decide to compile probes. Afterward, you will have to
239 load the probe modules to enable tracing of their events. The probes
240 automatically select the appropriate facilities.
241 Static instrumentation is a more invasive type of instrumentation that gives
242 the address taking a lock or doing a printk.
243 Select <Exit>
244 Select <Exit>
245 Select <Yes>
246make
247make modules_install
248(if necessary, create a initrd with mkinitrd or your preferate alternative)
249(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
250
251-- on X86, X86_64
252make install
253reboot
254Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
255
256-- on PowerPC
257cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
258cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
259cp .config /boot/config-2.6.X-lttng-0.x.xx
260depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
261mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
262(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
263that comes first is the default kernel)
264ybin
265select the right entry at the yaboot prompt (see choices : tab, select : type
266the kernel name followed by enter)
267Select the Linux 2.6.17-lttng-0.x.xx kernel in your boot loader.
268--
269
270
271
272* Editing the system wide configuration
273
274You must activate debugfs and specify a mount point. This is typically done in
275fstab such that it happens at boot time.
276
277If you have never used DebugFS before, these operation would do this for you :
278
279mkdir /mnt/debugfs
280cp /etc/fstab /etc/fstab.lttng.bkp
281echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
282
283then, rebooting or issuing the following command will activate debugfs :
284
285mount /mnt/debugfs
286
287You need to load the LTT modules to be able to control tracing from user
288space. This is done by issuing the following commands. Note however
289these commands load all LTT modules. Depending on what options you chose to
290compile statically, you may not need to issue all these commands.
291
292modprobe ltt-control
293modprobe ltt-core
294modprobe ltt-relay
295modprobe ltt-tracer
296modprobe ltt-probe-mm
297modprobe ltt-probe-kernel
298modprobe ltt-probe-i386 (or x86_64, powerpc, ppc, arm, mips)
299modprobe ltt-probe-net
300modprobe ltt-probe-list
301modprobe ltt-probe-ipc
302modprobe ltt-probe-fs
303
304If you want to have complete information about the kernel state (including all
305the process names), you need to load the ltt-statedump module. This is done by
306issuing the command :
307
308modprobe ltt-statedump
309
310You can automate at boot time loading the ltt-control module by :
311
312cp /etc/modules /etc/modules.bkp
313echo ltt-control >> /etc/modules
314echo ltt-core >> /etc/modules
315echo ltt-relay >> /etc/modules
316echo ltt-tracer >> /etc/modules
317echo ltt-probe-mm >> /etc/modules
318echo ltt-probe-kernel >> /etc/modules
319echo ltt-probe-i386 >> /etc/modules (or x86_64, powerpc, ppc, arm, mips)
320echo ltt-probe-net >> /etc/modules
321echo ltt-probe-list >> /etc/modules
322echo ltt-probe-ipc >> /etc/modules
323echo ltt-probe-fs >> /etc/modules
324echo ltt-statedump >> /etc/modules
325
326(note : if you want to probe a marker which is within a module, make sure you
327load the probe _after_ the module, otherwise the probe will not be able to
328connect itself to the marker.)
329
330
331* Getting and installing the ltt-control package (on the traced machine)
332(note : the ltt-control package contains lttd and lttctl. Although it has the
333same name as the ltt-control kernel module, they are *not* the same thing.)
334su -
335cd /usr/src
336wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
337gzip -cd ltt-control-0.x-xxxx2006.tar.gz | tar xvof -
338cd ltt-control-0.x-xxxx2006
339(refer to README to see the development libraries that must be installed on you
340system)
341./configure
342make
343make install
344
345* Getting and installing the ltt-usertrace package for user space tracing
346See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
347
348
349* Getting and installing the LTTV package (on the visualisation machine, same or
350 different from the visualisation machine)
351
352su -
353cd /usr/src
354wget http://ltt.polymtl.ca/packages/LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz
355gzip -cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006.tar.gz | tar xvof -
356cd LinuxTraceToolkitViewer-0.x.xx-xxxx2006
357(refer to README to see the development libraries that must be installed on your
358system)
359./configure
360make
361make install
362
363
364
365
366***********************************************************
367** Section 3 * Using LTTng and LTTV **
368***********************************************************
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
419***********************************************************
420** Section 4 * Adding new instrumentations with genevent **
421***********************************************************
422
423* Getting and installing genevent
424
425su -
426cd /usr/src
427wget http://ltt.polymtl.ca/packages/genevent-0.xx.tar.gz
428gzip -cd genevent-0.xx.tar.gz | tar xvof -
429cd genevent-0.xx
430make
431make install
432
433
434* Add new events to the kernel with genevent (deprecated in LTTng 0.9.x)
435
436su -
437cd /usr/local/share/ltt-control/facilities
438cp process.xml yourfacility.xml
439 * edit yourfacility.xml to fit your needs.
440cd /tmp
441/usr/local/bin/genevent /usr/local/share/ltt-control/facilities/yourfacility.xml
442cp ltt-facility-yourfacility.h ltt-facility-id-yourfacility.h \
443 /usr/src/linux-2.6.17-lttng-0.x.xx8/include/ltt
444cp ltt-facility-loader-yourfacility.c ltt-facility-loader-yourfacility.h \
445 /usr/src/linux-2.6.17-lttng-0.x.xx/ltt/facilities
446 * edit the kernel file you want to instrument to add a marker to it. See
447 include/linux/marker.h.
448 * create a dynamically loadable probe. See ltt/probes for examples. The probe
449 will be connected to your marker and will typically call the logging
450 functions found in the header file you created with genevent.
451
452* Add new kernel events
453
454*Important* note : in its current state, LTTng and LTTV needs the programmer
455to keep the marker/probe format string and the XML description of the
456event data types in sync by hand. Failure to do so will result in errors in
457LTTV.
458
459See the markers documentation to see how to describe the marker. You will need
460to clone probe modules found in ltt/probes to connect them to the markers so
461that the information can be recorded in the trace.
462
463* Add new events to userspace programs with genevent
464See http://ltt.polymtl.ca/ > USERSPACE TRACING QUICKSTART
465
466User-space tracing still uses genevent, which is subject to change in a near
467future.
This page took 0.042382 seconds and 4 git commands to generate.