Removing whitespace/align errors
[lttv.git] / LTTngManual.html
CommitLineData
c924c2c6 1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
f6e6ee82 4 <title>Linux Trace Toolkit Next Generation Manual</title>
c924c2c6 5</head>
6 <body>
7
f6e6ee82 8<h1>Linux Trace Toolkit Next Generation Manual</h1>
c924c2c6 9
c924c2c6 10Author : Mathieu Desnoyers, September 2005<br>
b6d6974f 11Last update : January 30, 2010<br>
bc58079d 12(originally known as the LTTng QUICKSTART guide)
24070967 13
14<h2>Table of Contents</h2>
24070967 15
d58b406f 16<ul>
f9ff56f3 17<li><a href="#intro" name="TOCintro">Introduction</a></li>
7e77d1a9 18<ul>
2eec045b
MD
19<li><a href="#licenses" name="TOClicenses">Licenses</a></li>
20<ul>
7e77d1a9 21<li><a href="#arch" name="TOCarch">Supported architectures</a></li>
22</ul>
d58b406f 23
24070967 24<li><a href="#section1" name="TOCsection1">Installing LTTng and LTTV from
6f88b01d 25sources</a></li>
38b04cd7 26<ul>
2d540155 27<li><a href="#prerequisites" name="TOCprerequisites">Prerequisistes</li>
28<li><a href="#getlttng" name="TOCgetlttng">Getting the LTTng packages</li>
29<li><a href="#getlttngsrc" name="TOCgetlttngsrc">Getting the LTTng kernel sources</li>
30<li><a href="#installlttng" name="TOCinstalllttng">Installing a LTTng kernel</li>
6f88b01d 31<li><a href="#editconfig" name="TOCeditconfig">Editing the system wide
32configuration</a>
33<li><a href="#getlttctl" name="TOCgetlttctl">Getting and installing the
2d540155 34ltt-control package</li>
35<li><a href="#userspacetracing" name="TOCuserspacetracing">Userspace Tracing</li>
6f88b01d 36<li><a href="#getlttv" name="TOCgetlttv">Getting and installing the LTTV package</ul>
d58b406f 37
24070967 38<li><a href="#section2" name="TOCsection2">Using LTTng and LTTV</a></li>
d58b406f 39<ul>
40<li><a href="#uselttvgui" name="TOCuselttvgui">Use graphical LTTV to control
41tracing and analyse traces</a></li>
42<li><a href="#uselttngtext" name="TOCuselttngtext">Use text mode LTTng to
f7828b7c 43control tracing</a></li>
d58b406f 44<li><a href="#uselttvtext" name="TOCuselttvtext">Use text mode LTTV</a></li>
45<li><a href="#hybrid" name="TOChybrid">Tracing in "Hybrid" mode</a></li>
46<li><a href="#flight" name="TOCflight">Tracing in flight recorder mode</a></li>
d58b406f 47</ul>
48
24070967 49<li><a href="#section3" name="TOCsection3">Adding kernel and user-space
47e2b195 50instrumentation</a>
51<ul>
52<li><a href="#kerneltp" name="TOCkerneltp">Adding kernel instrumentation</a></li>
53<li><a href="#usertp" name="TOCusertp">Adding userspace instrumentation</a></li>
54</ul>
d58b406f 55
633bc4a3 56<li><a href="#section4" name="TOCsection4">Creating Debian and RPM packages
98dde887 57from LTTV</a></li>
58<ul>
59<li><a href="#pkgdebian" name="TOCpkgdebian">Create custom LTTV Debian
60<li><a href="#pkglttng" name="TOCpkglttng">Create custom LTTng packages</a></li>
98dde887 61</ul>
c924c2c6 62
f9ff56f3 63</ul>
64
65<hr />
66
b9e1fab1 67<h2><a href="#TOCintro" name="intro">Introduction</a></h2>
c924c2c6 68<p>
70a3fc43 69This document is made of five parts : the first one explains how
24070967 70to install LTTng and LTTV from sources, the second one describes the steps
633bc4a3 71to follow to trace a system and view it. The third part explains
c924c2c6 72briefly how to add a new trace point to the kernel and to user space
42cf459d 73applications. The fourth and last part explains how to create Debian or RPM
74packages from the LTTng and LTTV sources.
c924c2c6 75<p>
24070967 76These operations are made for installing the LTTng 0.86 tracer on a linux 2.6.X
c924c2c6 77kernel. You will also find instructions for installation of LTTV 0.12.x : the
78Linux Trace Toolkit Viewer.
24070967 79To see the list of compatibilities between LTTng, ltt-control, LTTV, please
80refer to :
c924c2c6 81<a
82href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV versions compatibility</a>
534f65eb 83
84The ongoing work had the Linux Kernel Markers integrated in the mainline Linux
85kernel since Linux 2.6.24 and the Tracepoints since 2.6.28. In its current
86state, the lttng patchset is necessary to have the trace clocksource, the
87instrumentation and the LTTng high-speed data extraction mechanism added to the
88kernel.
c924c2c6 89
aad04917
MD
90<br>
91<br>
2eec045b 92<h3><a href="#TOClicenses" name="licenses">Licenses</a></h3>
aad04917
MD
93<p>
94LTTng, UST and LTTV are developed by an open community. LTTng is released under
95a dual Gnu LGPLv2.1/GPLv2 license, except for very few kernel-specific files
96which are derived work from the Linux kernel.
97<p>
98LTTV is available under the Gnu GPLv2. The low-level LTTV trace reading library
99is released under Gnu LGPLv2.1.
100<p>
89b751c3
MD
101The UST (Userspace Tracing) and the Userspace RCU libraries are released under
102the LGPLv2.1 license, which allows linking with non-GPL (BSD, proprietary...)
103applications. The associated headers are released under MIT-style/BSD-style
104licenses.
aad04917
MD
105<p>
106Please refer to each particular file licensing for details.
107
7e77d1a9 108<h3><a href="#TOCarch" name="arch">Supported architectures</a></h3>
c924c2c6 109LTTng :<br>
70a3fc43 110<br>
c924c2c6 111<li> x86 32/64 bits
112<li> PowerPC 32 and 64 bits
f0fcce6d 113<li> ARMv7 OMAP3
114<li> Other ARM (with limited timestamping precision, e.g. 1HZ. Need
c924c2c6 115architecture-specific support for better precision)
116<li> MIPS
1aeeacdb 117<li> sh (partial architecture-specific instrumentation)
118<li> sparc64 (partial architecture-specific instrumentation)
119<li> s390 (partial architecture-specific instrumentation)
120<li> Other architectures supported without architecture-specific instrumentation
121and with low-resolution timestamps.<br>
c924c2c6 122<br>
24070967 123<br>
c924c2c6 124LTTV :<br>
70a3fc43 125<br>
c924c2c6 126<li> Intel 32/64 bits
127<li> PowerPC 32 and 64 bits
128<li> Possibly others. Takes care of endianness and type size difference between
129the LTTng traces and the LTTV analysis tool.
130
f9ff56f3 131<hr />
132
c924c2c6 133
89aa576c 134<h2><a href="#TOCsection1" name="section1">Installation from sources</a></h2>
633bc4a3 135<p>
c924c2c6 136
6f88b01d 137<h3><a href="#TOCprerequisites" name="prerequisites">Prerequisites</a></h3>
633bc4a3 138<ul>
139<p>
c924c2c6 140Tools needed to follow the package download steps :
141
633bc4a3 142<li>wget
143<li>bzip2
144<li>gzip
145<li>tar
c924c2c6 146
633bc4a3 147<p>
c924c2c6 148You have to install the standard development libraries and programs necessary
149to compile a kernel :
150
84cf5903 151<PRE>
c924c2c6 152(from Documentation/Changes in the Linux kernel tree)
84cf5903 153Gnu C 2.95.3 # gcc --version
154Gnu make 3.79.1 # make --version
155binutils 2.12 # ld -v
156util-linux 2.10o # fdformat --version
157module-init-tools 0.9.10 # depmod -V
158</PRE>
c924c2c6 159
633bc4a3 160<p>
c924c2c6 161You might also want to have libncurses5 to have the text mode kernel
162configuration menu, but there are alternatives.
163
633bc4a3 164<p>
c924c2c6 165Prerequisites for LTTV 0.x.x installation are :
166
84cf5903 167<PRE>
168gcc 3.2 or better
169gtk 2.4 or better development libraries
c924c2c6 170 (Debian : libgtk2.0, libgtk2.0-dev)
171 (Fedora : gtk2, gtk2-devel)
172 note : For Fedora users : this might require at least core 3 from Fedora,
173 or you might have to compile your own GTK2 library.
84cf5903 174glib 2.4 or better development libraries
c924c2c6 175 (Debian : libglib2.0-0, libglib2.0-dev)
176 (Fedora : glib2, glib2-devel)
84cf5903 177libpopt development libraries
c924c2c6 178 (Debian : libpopt0, libpopt-dev)
179 (Fedora : popt)
84cf5903 180libpango development libraries
c924c2c6 181 (Debian : libpango1.0, libpango1.0-dev)
182 (Fedora : pango, pango-devel)
84cf5903 183libc6 development librairies
c924c2c6 184 (Debian : libc6, libc6-dev)
185 (Fedora : glibc, glibc)
84cf5903 186</PRE>
633bc4a3 187</ul>
c924c2c6 188
c8997124 189<li>Reminder</li>
c924c2c6 190
c8997124 191<p>
633bc4a3 192See the list of compatibilities between LTTng, ltt-control and LTTV at :
193<a
194href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/lttng-lttv-compatibility.html">LTTng+LTTV
195versions compatibility</a>.
c924c2c6 196
197
6f88b01d 198<h3><a href="#TOCgetlttng" name="getlttng">Getting the LTTng packages</a></h3>
c924c2c6 199
c8997124 200<PRE>
c924c2c6 201su -
202mkdir /usr/src/lttng
203cd /usr/src/lttng
204(see http://ltt.polymtl.ca/lttng for package listing)
205wget http://ltt.polymtl.ca/lttng/patch-2.6.X-lttng-0.x.xx.tar.bz2
206bzip2 -cd patch-2.6.X-lttng-0.x.xx.tar.bz2 | tar xvof -
c8997124 207</PRE>
c924c2c6 208
209
6f88b01d 210<h3><a href="#TOCgetlttngsrc" name="getlttngsrc">Getting LTTng kernel sources</a></h3>
c924c2c6 211
c8997124 212<PRE>
c924c2c6 213su -
214cd /usr/src
215wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.X.tar.bz2
216bzip2 -cd linux-2.6.X.tar.bz2 | tar xvof -
217cd linux-2.6.X
218- For LTTng 0.9.4- cat /usr/src/lttng/patch*-2.6.X-lttng-0.x.xx* | patch -p1
219- For LTTng 0.9.5+ apply the patches in the order specified in the series file,
220 or use quilt
221cd ..
222mv linux-2.6.X linux-2.6.X-lttng-0.x.xx
c8997124 223</PRE>
c924c2c6 224
225
6f88b01d 226<h3><a href="#TOCinstalllttng" name="installlttng">Installing a LTTng kernel</a></h3>
c924c2c6 227
c8997124 228<PRE>
c924c2c6 229su -
230cd /usr/src/linux-2.6.X-lttng-0.x.xx
231make menuconfig (or make xconfig or make config)
232 Select the < Help > button if you are not familiar with kernel
233 configuration.
234 Items preceded by [*] means they has to be built into the kernel.
235 Items preceded by [M] means they has to be built as modules.
236 Items preceded by [ ] means they should be removed.
237 go to the "General setup" section
238 Select the following options :
239 [*] Prompt for development and/or incomplete code/drivers
240 [*] Activate markers
241 [*] Activate userspace markers ABI (experimental, optional)
242 [*] Immediate value optimization (optional)
243 [*] Linux Trace Toolkit Next Generation (LTTng) --->
244 <M> or <*> Compile lttng tracing probes
245 <M> or <*> Linux Trace Toolkit High-speed Lockless Data Relay
246 <M> or <*> Linux Trace Toolkit Lock-Protected Data Relay
247 <M> or <*> Linux Trace Toolkit Serializer
248 <M> or <*> Linux Trace Toolkit Marker Control
249 <M> or <*> Linux Trace Toolkit Tracer
250 [*] Align Linux Trace Toolkit Traces
251 <M> or <*> Support logging events from userspace
252 [*] Support trace extraction from crash dump
253 <M> or <*> Linux Trace Toolkit Trace Controller
254 <M> or <*> Linux Trace Toolkit State Dump
255 Select <Exit>
256 Select <Exit>
257 Select <Yes>
258make
259make modules_install
260(if necessary, create a initrd with mkinitrd or your preferate alternative)
261(mkinitrd -o /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx)
262
263-- on X86, X86_64
264make install
265reboot
266Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
267
268-- on PowerPC
269cp vmlinux.strip /boot/vmlinux-2.6.X-lttng-0.x.xx
270cp System.map /boot/System.map-2.6.X-lttng-0.x.xx
271cp .config /boot/config-2.6.X-lttng-0.x.xx
272depmod -ae -F /boot/System.map-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
273mkinitrd /boot/initrd.img-2.6.X-lttng-0.x.xx 2.6.X-lttng-0.x.xx
274(edit /etc/yaboot.conf to add a new entry pointing to your kernel : the entry
275that comes first is the default kernel)
276ybin
277select the right entry at the yaboot prompt (see choices : tab, select : type
278the kernel name followed by enter)
279Select the Linux 2.6.X-lttng-0.x.xx kernel in your boot loader.
280--
c8997124 281</PRE>
c924c2c6 282
6f88b01d 283<h3><a href="#TOCeditconfig" name="editconfig">Editing the system wide
284configuration</a></h3>
c924c2c6 285
c8997124 286<p>
c924c2c6 287You must activate debugfs and specify a mount point. This is typically done in
c8997124 288fstab such that it happens at boot time. If you have never used DebugFS before,
289these operation would do this for you :
c924c2c6 290
c8997124 291<PRE>
c924c2c6 292mkdir /mnt/debugfs
293cp /etc/fstab /etc/fstab.lttng.bkp
294echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
c8997124 295</PRE>
c924c2c6 296
c8997124 297<p>
c924c2c6 298then, rebooting or issuing the following command will activate debugfs :
c8997124 299<PRE>
c924c2c6 300mount /mnt/debugfs
c8997124 301</PRE>
c924c2c6 302
c8997124 303<p>
c924c2c6 304You need to load the LTT modules to be able to control tracing from user
305space. This is done by issuing the following commands. Note however
306these commands load all LTT modules. Depending on what options you chose to
307compile statically, you may not need to issue all these commands.
308
c8997124 309<PRE>
c924c2c6 310modprobe ltt-trace-control
311modprobe ltt-marker-control
312modprobe ltt-tracer
313modprobe ltt-serialize
314modprobe ltt-relay
315modprobe ipc-trace
316modprobe kernel-trace
317modprobe mm-trace
318modprobe net-trace
319modprobe fs-trace
320modprobe jbd2-trace
321modprobe ext4-trace
322modprobe syscall-trace
323modprobe trap-trace
324#if locking tracing is wanted, uncomment the following
325#modprobe lockdep-trace
c8997124 326</PRE>
c924c2c6 327
c8997124 328<p>
c924c2c6 329If you want to have complete information about the kernel state (including all
330the process names), you need to load the ltt-statedump module. This is done by
331issuing the command :
332
c8997124 333<PRE>
c924c2c6 334modprobe ltt-statedump
c8997124 335</PRE>
336<p>
c924c2c6 337You can automate at boot time loading the ltt-control module by :
338
c8997124 339<PRE>
c924c2c6 340cp /etc/modules /etc/modules.bkp
341echo ltt-trace-control >> /etc/modules
342echo ltt-marker-control >> /etc/modules
343echo ltt-tracer >> /etc/modules
344echo ltt-serialize >> /etc/modules
345echo ltt-relay >> /etc/modules
346echo ipc-trace >> /etc/modules
347echo kernel-trace >> /etc/modules
348echo mm-trace >> /etc/modules
349echo net-trace >> /etc/modules
350echo fs-trace >> /etc/modules
351echo jbd2-trace >> /etc/modules
352echo ext4-trace >> /etc/modules
353echo syscall-trace >> /etc/modules
354echo trap-trace >> /etc/modules
355#if locking tracing is wanted, uncomment the following
356#echo lockdep-trace >> /etc/modules
c8997124 357</PRE>
c924c2c6 358
6f88b01d 359
360<h3><a href="#TOCgetlttctl" name="getlttctl">Getting and installing the
361ltt-control package (on the traced machine)</a></h3>
c8997124 362<p>
c924c2c6 363(note : the ltt-control package contains lttd and lttctl. Although it has the
364same name as the ltt-control kernel module, they are *not* the same thing.)
c8997124 365
366<PRE>
c924c2c6 367su -
368cd /usr/src
369wget http://ltt.polymtl.ca/lttng/ltt-control-0.x-xxxx2006.tar.gz
370gzip -cd ltt-control-0.x-xxxx2008.tar.gz | tar xvof -
371cd ltt-control-0.x-xxxx2006
372(refer to README to see the development libraries that must be installed on you
373system)
374./configure
375make
376make install
4411682a
MD
377# (run ldconfig to ensure new shared objects are taken into account)
378ldconfig
c8997124 379</PRE>
c924c2c6 380
38b04cd7 381<h3><a href="#TOCuserspacetracing" name="userspacetracing">Userspace tracing</a></h3>
c924c2c6 382
c8997124 383<PRE>
c924c2c6 384Make sure you selected the kernel menuconfig option :
385 <M> or <*> Support logging events from userspace
386And that the ltt-userspace-event kernel module is loaded if selected as a
387module.
388
389Simple userspace tracing is available through
390echo "some text to record" > /mnt/debugfs/ltt/write_event
391
392It will appear in the trace under event :
393channel : userspace
394event name : event
c8997124 395</PRE>
c924c2c6 396
6f88b01d 397<h3><a href="#TOCgetlttv" name="getlttv">Getting and installing the LTTV package
398(on the visualisation machine, same
399or different from the visualisation machine)</a></h3>
c924c2c6 400
c8997124 401<PRE>
c924c2c6 402su -
403cd /usr/src
404wget http://ltt.polymtl.ca/packages/lttv-0.x.xx-xxxx2008.tar.gz
405gzip -cd lttv-0.x.xx-xxxx2008.tar.gz | tar xvof -
406cd lttv-0.x.xx-xxxx2008
407(refer to README to see the development libraries that must be installed on your
408system)
409./configure
410make
411make install
4411682a
MD
412# (run ldconfig to ensure new shared objects are taken into account)
413ldconfig
13d7a628 414</PRE>
c924c2c6 415
c8997124 416<hr />
c924c2c6 417
c924c2c6 418
89aa576c 419<h2><a href="#TOCsection2" name="section2">Using LTTng and LTTV</a></h2>
c924c2c6 420
d58b406f 421<li><b>IMPORTANT : Arm Linux Kernel Markers after each boot before tracing</b></li>
c8997124 422<PRE>
c924c2c6 423ltt-armall
c8997124 424</PRE>
c924c2c6 425
d58b406f 426<h3><a href="#TOCuselttvgui" name="uselttvgui">Use graphical LTTV to control
427tracing and analyse traces</a></h3>
c8997124 428<PRE>
c924c2c6 429lttv-gui (or /usr/local/bin/lttv-gui)
430 - Spot the "Tracing Control" icon : click on it
431 (it's a traffic light icon)
432 - enter the root password
433 - click "start"
434 - click "stop"
435 - Yes
436 * You should now see a trace
c8997124 437</PRE>
c924c2c6 438
d58b406f 439<h3><a href="#TOCuselttngtext" name="uselttngtext">Use text mode LTTng to control tracing</a></h3>
c8997124 440<PRE>
c924c2c6 441The tracing can be controlled from a terminal by using the lttctl command (as
442root).
443
444Start tracing :
445
446lttctl -C -w /tmp/trace1 trace1
447
448Stop tracing and destroy trace channels :
449
450lttctl -D trace1
451
452see lttctl --help for details.
df7f63ab 453</PRE>
c8997124 454<p>
c924c2c6 455(note : to see if the buffers has been filled, look at the dmesg output after
196f71c4 456lttctl -D or after stopping tracing from the GUI, it will show an event lost
c924c2c6 457count. If it is the case, try using larger buffers. See lttctl --help to learn
458how. lttv now also shows event lost messages in the console when loading a trace
459with missing events or lost subbuffers.)
460
d58b406f 461<h3><a href="#TOCuselttvtext" name="uselttvtext">Use text mode LTTV</a></h3>
c8997124 462<p>
c924c2c6 463Feel free to look in /usr/local/lib/lttv/plugins to see all the text and
464graphical plugins available.
c8997124 465<p>
c924c2c6 466For example, a simple trace dump in text format is available with :
c8997124 467<PRE>
c924c2c6 468lttv -m textDump -t /tmp/trace
c8997124 469</PRE>
c8997124 470<p>
471See lttv -m textDump --help for detailed command line options of textDump.
c8997124 472<p>
c924c2c6 473It is, in the current state of the project, very useful to use "grep" on the
474text output to filter by specific event fields. You can later copy the timestamp
475of the events to the clipboard and paste them in the GUI by clicking on the
476bottom right label "Current time". Support for this type of filtering should
477be added to the filter module soon.
478
d58b406f 479<h3><a href="#TOChybrid" name="hybrid">Tracing in "Hybrid" mode</a></h3>
c8997124 480<p>
c924c2c6 481Starting from LTTng 0.5.105 and ltt-control 0.20, a new mode can be used :
482hybrid. It can be especially useful when studying big workloads on a long period
483of time.
c8997124 484<p>
c924c2c6 485When using this mode, the most important, low rate control information will be
486recorded during all the trace by lttd (i.e. process creation/exit). The high
487rate information (i.e. interrupt/traps/syscall entry/exit) will be kept in a
488flight recorder buffer (now named flight-channelname_X).
c8997124 489<p>
c924c2c6 490The following lttctl commands take an hybrid trace :
c8997124 491<p>
c924c2c6 492Create trace channel, start lttd on normal channels, start tracing:
c8997124 493<PRE>
c924c2c6 494lttctl -C -w /tmp/trace2 -o channel.kernel.overwrite=1 trace2
c8997124 495</PRE>
496<p>
c924c2c6 497Stop tracing, start lttd on flight recorder channels, destroy trace channels :
c8997124 498<PRE>
c924c2c6 499lttctl -D -w /tmp/trace2 trace2
c8997124 500</PRE>
501<p>
c924c2c6 502Each "overwrite" channel is flight recorder channel.
503
d58b406f 504
505<h3><a href="#TOCflight" name="flight">Tracing in flight recorder mode</a></h3>
c8997124 506<li>Flight recorder mode</li>
c8997124 507<p>
c924c2c6 508The flight recorder mode writes data into overwritten buffers for all channels,
509including control channels, except for the facilities tracefiles. It consists of
510setting all channels to "overwrite".
c8997124 511<p>
c924c2c6 512The following lttctl commands take a flight recorder trace :
c8997124 513<PRE>
c924c2c6 514lttctl -C -w /tmp/trace3 -o channel.all.overwrite=1 trace3
515...
516lttctl -D -w /tmp/trace3 trace3
c8997124 517</PRE>
c924c2c6 518
89aa576c 519<hr />
520
521
522<h2><a href="#TOCsection3" name="section3">Adding new instrumentations with the
523markers</a></h2>
524<p>
c924c2c6 525
47e2b195 526<h3><a href="#TOCkerneltp" name="kerneltp">Adding kernel
527instrumentation</a></h3>
528
89aa576c 529<p>
47e2b195 530See <a
531href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=blob;f=Documentation/markers.txt">Documentation/markers.txt</a>
532and <a
81654ff7 533href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=blob;f=Documentation/trace/tracepoints.txt">Documentation/trace/tracepoints.txt</a> in your kernel
c924c2c6 534tree.
47e2b195 535<p>
536Also see <a
537href="http://git.kernel.org/?p=linux/kernel/git/compudj/linux-2.6-lttng.git;a=tree;f=ltt/probes">ltt/probes/</a>
538for LTTng probe examples.
539
540<h3><a href="#TOCusertp" name="usertp">Adding userspace instrumentation</a></h3>
c924c2c6 541
305fd815 542Add new events to userspace programs with
543<a href="http://ltt.polymtl.ca/packages/">userspace markers packages</a>.
c924c2c6 544Get the latest markers-userspace-*.tar.bz2 and see the Makefile and examples. It
545allows inserting markers in executables and libraries, currently only on x86_32
546and x86_64.
e01a1ce1 547See <a
548href="http://ltt.polymtl.ca/packages/markers-userspace-0.5.tar.bz2">markers-userspace-0.5.tar.bz2</a> or more recent.
549
38b04cd7 550<p>
e01a1ce1 551Note that a new design document for a 3rd generation of tracepoint/marker-based
552userspace tracing is available at <a
553href="http://ltt.polymtl.ca/svn/trunk/lttv/doc/developer/ust.html">LTTng User-space Tracing
98dde887 554Design</a>. This new infrastructure is not yet implemented.
38b04cd7 555
556<p>
557The easy quick-and-dirty way to perform userspace tracing is currently to write
558an string to /mnt/debugfs/ltt/write_event. See <a
559href="#userspacetracing">Userspace tracing</a> in the
560installation for sources section of this document.
e01a1ce1 561
89aa576c 562<hr />
633bc4a3 563
89aa576c 564<h2><a href="#TOCsection4" name="section4">Creating Debian or RPM packages</a></h2>
565<p>
633bc4a3 566
98dde887 567<h3><a href="#TOCpkgdebian" name="pkgdebian">Create custom LTTV Debian packages</a></h3>
633bc4a3 568
89aa576c 569<PRE>
570Use : dpkg-buildpackage -rfakeroot
571</PRE>
572<p>
633bc4a3 573You should then have your LTTV .deb files created for your architecture.
574
98dde887 575<h3><a href="#TOCpkglttng" name="pkglttng">Create custom LTTng packages</a></h3>
89aa576c 576<p>
633bc4a3 577For building LTTng Debian packages :
89aa576c 578get the build tree with patches applies as explained in section 2.
633bc4a3 579
89aa576c 580<PRE>
633bc4a3 581make menuconfig (or xconfig or config) (customize your configuration)
582make-kpkg kernel_image
89aa576c 583</PRE>
584<p>
633bc4a3 585You will then see your freshly created .deb in /usr/src. Install it with
89aa576c 586<PRE>
633bc4a3 587dpkg -i /usr/src/(image-name).deb
89aa576c 588</PRE>
589<p>
633bc4a3 590Then, follow the section "Editing the system wide configuration" in section 2.
591
70a3fc43 592<hr />
633bc4a3 593
c924c2c6 594 </body>
595</html>
This page took 0.059527 seconds and 4 git commands to generate.