Fix: add default session conf. dir to manpage
[lttng-tools.git] / doc / man / lttng-sessiond.8
... / ...
CommitLineData
1.TH "LTTNG-SESSIOND" "8" "January 31, 2012" "" ""
2
3.SH "NAME"
4lttng-sessiond \(em LTTng 2.x central tracing registry session daemon.
5
6.SH "SYNOPSIS"
7
8.PP
9.nf
10lttng-sessiond [OPTIONS]
11.fi
12.SH "DESCRIPTION"
13
14.PP
15The LTTng project aims at providing highly efficient tracing tools for Linux.
16It's tracers help tracking down performance issues and debugging problems
17involving multiple concurrent processes and threads. Tracing across multiple
18systems is also possible.
19
20The session daemon, acting as a tracing registry, allow you to interact with
21multiple tracers (kernel and user-space) inside the same container, a tracing
22session. Trace can be gathered from the kernel and/or instrumented applications
23(lttng-ust(3)). Aggregating those traces is done using a viewer, like the
24babeltrace(1) text viewer.
25
26In order to trace the kernel, the session daemon needs to be running as root.
27LTTng provides the use of a \fBtracing group\fP (default: tracing). Whomever is
28in that group can interact with the root session daemon and thus trace the
29kernel. Session daemons can co-exist meaning that you can have a session daemon
30running as Alice that can be used to trace her applications along side with a
31root daemon or even a Bob daemon. We highly recommend to start the session
32daemon at boot time for stable and long term tracing.
33
34The session daemon is in charge of managing trace data consumers by spawning
35them when the time has come. The user don't need to manage the lttng-consumerd.
36.SH "OPTIONS"
37
38.PP
39This program follow the usual GNU command line syntax with long options starting with
40two dashes. Below is a summary of the available options.
41.PP
42
43.TP
44.BR "-h, --help"
45Show summary of possible options and commands
46.TP
47.BR "-v, --verbose"
48Increase verbosity
49
50There is three debugging level which will print on stderr. Maximum verbosity is
51\fB-vvv\fP.
52.TP
53.BR " --verbose-consumer"
54Verbose mode for consumer. Activate DBG() macro.
55.TP
56.BR "-d, --daemonize"
57Start as a daemon
58.TP
59.BR "-b, --background"
60Start as a daemon, keeping console open
61.TP
62.BR "-g, --group=NAME"
63Specify the tracing group name. (default: tracing)
64.TP
65.BR "-V, --version"
66Show version number
67.TP
68.BR "-S, --sig-parent"
69Send SIGUSR1 to parent pid to notify readiness.
70
71This is used by \fBlttng(1)\fP to get notified when the session daemon is ready
72to accept command. When building a third party tool over liblttng-ctl, this option
73can be very handy to synchronize the control tool and the session daemon.
74.TP
75.BR "-q, --quiet"
76No output at all.
77.TP
78.BR " --no-kernel"
79No kernel tracer support
80.TP
81.BR " --jul-tcp-port"
82JUL application registration TCP port (default: 5345)
83.TP
84.BR " --kmod-probes=probe1, probe2, ..."
85Specify the kernel modules containing LTTng probes to load by the session daemon.
86Only the component name of the probe needs to be specified, e.g. to load the
87lttng-probe-irq and lttng-probe-sched use: --kmod-probes="irq, sched".
88.TP
89.BR "-c, --client-sock=PATH"
90Specify path for the client unix socket
91.TP
92.BR "-a, --apps-sock PATH"
93Specify path for apps unix socket
94.TP
95.BR " --kconsumerd-err-sock=PATH"
96Specify path for the kernel consumer error socket
97.TP
98.BR " --kconsumerd-cmd-sock=PATH
99Specify path for the kernel consumer command socket
100.TP
101.BR " --ustconsumerd32-err-sock=PATH
102Specify path for the 32-bit UST consumer error socket
103.TP
104.BR " --ustconsumerd64-err-sock=PATH
105Specify path for the 64-bit UST consumer error socket
106.TP
107.BR " --ustconsumerd32-cmd-sock=PATH
108Specify path for the 32-bit UST consumer command socket
109.TP
110.BR " --ustconsumerd64-cmd-sock=PATH
111Specify path for the 64-bit UST consumer command socket
112.TP
113.BR " --consumerd32-path=PATH
114Specify path for the 32-bit UST consumer daemon binary
115.TP
116.BR " --consumerd32-libdir=PATH
117Specify path for the 32-bit UST consumer daemon libraries
118.TP
119.BR " --consumerd64-path=PATH
120Specify path for the 64-bit UST consumer daemon binary
121.TP
122.BR " --consumerd64-libdir=PATH
123Specify path for the 64-bit UST consumer daemon libraries
124.TP
125.BR "-l, --load PATH
126Specify path from which to load session configurations
127.SH "ENVIRONMENT VARIABLES"
128
129.PP
130Note that all command line options will override environment variables.
131.PP
132
133.PP
134.IP "LTTNG_CONSUMERD32_BIN"
135Specify the 32-bit consumer binary path. \fB--consumerd32-path\fP
136override this variable.
137.IP "LTTNG_CONSUMERD64_BIN"
138Specify the 64-bit consumer binary path. \fB--consumerd64-path\fP
139override this variable.
140.IP "LTTNG_CONSUMERD32_LIBDIR"
141Specifiy the 64-bit library path containing libconsumer.so.
142\fB--consumerd32-libdir\fP override this variable.
143.IP "LTTNG_CONSUMERD64_LIBDIR"
144Specifiy the 32-bit library path containing libconsumer.so.
145\fB--consumerd64-libdir\fP override this variable.
146.IP "LTTNG_DEBUG_NOCLONE"
147Debug-mode disabling use of clone/fork. Insecure, but required to allow
148debuggers to work with sessiond on some operating systems.
149.IP "LTTNG_APP_SOCKET_TIMEOUT"
150Control the timeout of application's socket when sending and receiving
151commands. Takes an integer parameter: the timeout value, in seconds.
152After this period of time, the application is unregistered by the
153session daemon. A value of 0 or -1 means an infinite timeout. Default
154value is 5 seconds.
155.IP "LTTNG_NETWORK_SOCKET_TIMEOUT"
156Control timeout of socket connection, receive and send. Takes an integer
157parameter: the timeout value, in milliseconds. A value of 0 or -1 uses
158the timeout of the operating system (this is the default).
159.IP "LTTNG_SESSION_CONFIG_XSD_PATH"
160Specify the path that contains the XML session configuration schema (xsd).
161.IP "LTTNG_KMOD_PROBES"
162Specify the kernel modules probes that should be loaded by the session daemon.
163.SH "SEE ALSO"
164
165.PP
166babeltrace(1), lttng-ust(3), lttng(1)
167.PP
168
169.SH "LIMITATIONS"
170
171.PP
172For unprivileged user running lttng-sessiond, the maximum number of file
173descriptors per process is usually 1024. This limits the number of traceable
174applications since for each instrumented application there is two file
175descriptors per-CPU and one more socktet for bidirectional communication.
176
177For the root user, the limit is bumped to 65535. Future version will deal with
178this limitation.
179.PP
180
181.SH "BUGS"
182
183.PP
184No show stopper bugs are known yet in this version.
185
186If you encounter any issues or usability problem, please report it on our
187mailing list <lttng-dev@lists.lttng.org> to help improve this project.
188.SH "CREDITS"
189
190.PP
191lttng-sessiond is distributed under the GNU General Public License version 2. See the
192file COPYING for details.
193.PP
194A Web site is available at http://lttng.org for more information on the LTTng
195project.
196.PP
197You can also find our git tree at http://git.lttng.org.
198.PP
199Mailing lists for support and development: <lttng-dev@lists.lttng.org>.
200.PP
201You can find us on IRC server irc.oftc.net (OFTC) in #lttng.
202.PP
203.SH "THANKS"
204
205.PP
206Thanks to Yannick Brosseau without whom this project would never have been so
207lean and mean! Also thanks to the Ericsson teams working on tracing which helped
208us greatly with detailed bug reports and unusual test cases.
209
210Thanks to our beloved packager Alexandre Montplaisir-Goncalves (Ubuntu and PPA
211maintainer) and Jon Bernard for our Debian packages.
212
213Special thanks to Michel Dagenais and the DORSAL laboratory at Polytechnique de
214Montreal for the LTTng journey.
215.PP
216.SH "AUTHORS"
217
218.PP
219lttng-tools was originally written by Mathieu Desnoyers, Julien Desfossez and
220David Goulet. More people have since contributed to it. It is currently
221maintained by David Goulet <dgoulet@efficios.com>.
222.PP
This page took 0.023522 seconds and 4 git commands to generate.