4 Please visit https://lttng.org for more information. The current maintainer is
5 David Goulet <dgoulet@efficios.com>.
7 Latest development can be found at:
9 * Gitweb : https://git.lttng.org/?p=lttng-tools.git;a=summary
10 * Git : git://git.lttng.org/lttng-tools.git
14 - Linux kernel >= 2.6.27
15 For epoll() support, at least this version is needed. However, poll() is
16 also supported by running "./configure --disable-epoll". Using that, the
17 kernel version can probably be older but we can't provide any guarantee.
18 Please let us know if you are able to go lower without any problems.
21 Userspace RCU library, by Mathieu Desnoyers and Paul E. McKenney
23 -> Tested with liburcu 0.7.x stable.
25 * Debian/Ubuntu package: liburcu-dev
26 * Git : git://git.lttng.org/userspace-rcu.git
27 * Website: https://lttng.org/urcu
30 Library for parsing command line parameters
32 * Debian/Ubuntu package: libpopt-dev
35 Universally unique id library
37 * Debian/Ubuntu package: uuid-dev
39 - Babeltrace (optional)
40 Trace viewer. Enable the use of "lttng view" command
42 * Debian/Ubuntu package: babeltrace
45 Needed for make check and tests.
47 - Python >= 3.0 (optional)
48 Needed for make check and tests.
50 * Debian/Ubuntu package: python3
52 - SWIG >= 2.0 (optional)
53 Needed for Python bindings (--enable-python-bindings).
55 * Debian/Ubuntu package: swig2.0
57 - python-dev (optional)
60 * Debian/Ubuntu package: python3-dev
62 - For kernel tracing: modprobe
65 Needed for running "make check".
67 For developers using the git tree:
69 This source tree is based on the autotools suite from GNU to simplify
70 portability. Here are some things you should have on your system in order to
71 compile the git repository tree :
73 - GNU autotools (automake >=1.10, autoconf >=2.50, autoheader >=2.50)
74 (make sure your system wide "automake" points to a recent version!)
76 (for more information, go to https://www.gnu.org/software/autoconf/)
80 If you use GNU gold, which is NOT mandatory, make sure you have this version:
82 (Before this version we hit a known bug documented at:
83 http://sourceware.org/bugzilla/show_bug.cgi?id=11317)
84 Be advise that with GNU gold, you'll might have to specify -L/usr/local/lib in
87 If you get the tree from the repository, you will need to use the "bootstrap"
88 script in the root of the tree. It calls all the GNU tools needed to prepare
89 the tree configuration.
91 INSTALLATION INSTRUCTIONS:
93 - Download, compile and install the prerequisites.
101 If compiling from the git repository, run ./bootstrap before running
102 the configure script, to generate it.
104 If you want Python bindings, run ./configure --enable-python-bindings.
105 Please note that some distributions will need the following
106 environment variables set before running configure:
108 export PYTHON="python3"
109 export PYTHON_CONFIG="/usr/bin/python3-config"
113 Please see doc/quickstart.txt to help you start tracing. You can also use the
114 -h/--help command on 'lttng' and all other commands offered in this tool (Ex:
115 lttng enable-event -h).
117 A network streaming HOWTO can be found in doc/streaming-howto.txt which quickly
118 helps you understand how to stream a LTTng 2.0 trace.
120 A Python HOWTO can be found in doc/python-howto.txt which quickly
121 helps you understand how to use the Python module to control the LTTng API.
125 This package contains the following elements:
127 - liblttng-ctl (public API)
128 The LTTng tracing control library.
130 - libsessiond-comm (internal)
131 The lttng-sessiond communication library. In order to talk with
132 lttng-sessiond, this library must be used.
134 - libkernel-ctl (internal)
135 Kernel tracer control and ioctl definitions.
137 - libconsumer (internal)
138 Library for Kernel and (optionally) UST trace consumer.
140 - libkernel-consumer (internal)
141 Library for Kernel consumer control
143 - libust-consumer (internal)
144 Library for UST consumer control
146 - libhashtable (internal)
147 Library wrapper over URCU hashtables.
149 - libcommon (internal)
150 Contains multiple useful function call used by the whole tree.
152 - libcompat (internal)
153 Compatibility library mostly for FreeBSD and Linux.
155 - librelayd (internal)
156 Library for all relayd interactions over the network.
159 The relay daemon used for network streaming
162 The consumer daemon which uses libconsumer.
165 The LTTng session daemon binary.
168 The LTTng tracer command line control tool.
170 - include (installed in $(includedir)/lttng/)
171 The liblttngctl API header file.
174 Various test programs.
177 Various documentations and quickstart guide.
180 Contains extra data such as bash completion file. Python bindings for
181 liblttng-ctl are also available there.