Fix comment of cmd_create
[lttng-tools.git] / README
1 LTTng Trace Control
2 ----------------
3
4 Please visit http://lttng.org for more information.
5
6 Latest development can be found at:
7
8 * Gitweb : http://git.lttng.org/lttng-tools.git/
9 * Git : git://git.lttng.org/lttng-tools.git
10
11 REQUIREMENTS:
12
13 - Linux kernel >= 2.6.27
14 pipe2(), epoll_create1() and SOCK_CLOEXEC are needed to run the session
15 daemon. There were introduce in the Linux 2.6.27
16
17 - liburcu
18 Userspace RCU library, by Mathieu Desnoyers and Paul E. McKenney
19
20 -> Tested with liburcu >= v0.6.6
21
22 * Debian/Ubuntu package: liburcu-dev
23 * Git : git://git.lttng.org/userspace-rcu.git
24 * Website: http://lttng.org/urcu
25
26 - libpopt >= 1.13
27 Library for parsing command line parameters
28
29 * Debian/Ubuntu package: libpopt-dev
30
31 For developers using the git tree:
32
33 This source tree is based on the autotools suite from GNU to simplify
34 portability. Here are some things you should have on your system in order to
35 compile the git repository tree :
36
37 - GNU autotools (automake >=1.10, autoconf >=2.50, autoheader >=2.50)
38 (make sure your system wide "automake" points to a recent version!)
39 - GNU Libtool >=2.2
40 (for more information, go to http://www.gnu.org/software/autoconf/)
41
42 If you get the tree from the repository, you will need to use the "bootstrap"
43 script in the root of the tree. It calls all the GNU tools needed to prepare the
44 tree configuration.
45
46 INSTALLATION INSTRUCTIONS:
47
48 - Download, compile and install the prerequisites.
49 Then:
50 $ ./configure
51 $ make
52 $ sudo make install
53 $ sudo ldconfig
54
55 If compiling from the git repository, run ./bootstrap before running
56 the configure script, to generate it.
57
58 USAGE:
59
60 Please see doc/quickstart.txt to help you start tracing. You can also use the
61 -h/--help command on 'lttng' and all other commands offered in this tool (Ex:
62 lttng enable-event -h).
63
64 PACKAGE CONTENTS:
65
66 This package contains the following elements:
67
68 - liblttngctl
69 The LTTng tracing control library.
70
71 - libsessiond-comm (internal)
72 The lttng-sessiond communication library. In order to talk with
73 lttng-sessiond, this library must be used.
74
75 - libkernel-ctl (internal)
76 Kernel tracer control and ioctl definitions.
77
78 - libconsumer (internal)
79 Library for Kernel and (optionally) UST trace consumer.
80
81 - libkernel-consumer (internal)
82 Library for Kernel consumer control
83
84 - libust-consumer (internal)
85 Library for UST consumer control
86
87 - libhashtable (internal)
88 Library wrapper over URCU hashtables.
89
90 - lttng-consumerd
91 The consumer daemon which uses libconsumer.
92
93 - lttng-sessiond
94 The LTTng session daemon binary.
95
96 - lttng
97 The LTTng tracer command line control tool.
98
99 - include (lttng.h --> installed in $(includedir)/lttng/lttng.h)
100 The liblttngctl API header file.
101
102 - tests
103 Various test programs.
104
105 - doc
106 Various documentations and quickstart guide.
This page took 0.032983 seconds and 5 git commands to generate.