Support per UID buffers
[lttng-tools.git] / doc / man / lttng.1
CommitLineData
391b9c72 1.TH "LTTNG" "1" "December 3rd, 2012" "" ""
6991b181
DG
2
3.SH "NAME"
391b9c72 4lttng \(em LTTng 2.1.x tracer control command line tool
6991b181
DG
5
6.SH "SYNOPSIS"
7
8.PP
9.nf
10lttng [OPTIONS] <COMMAND>
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
fa072eae 20The \fBlttng\fP command line tool from the lttng-tools package is used to control
6991b181
DG
21both kernel and user-space tracing. Every interactions with the tracer should
22be done by this tool or by the liblttng-ctl provided with the lttng-tools
23package.
24
25LTTng uses a session daemon (lttng-sessiond(8)), acting as a tracing registry,
50a3b92a 26which allows you to interact with multiple tracers (kernel and user-space)
6991b181
DG
27inside the same container, a tracing session. Traces can be gathered from the
28kernel and/or instrumented applications (lttng-ust(3)). Aggregating and reading
29those traces is done using the babeltrace(1) text viewer.
30
50a3b92a
DG
31We introduce the notion of \fBtracing domains\fP which is essentially a type of
32tracer (kernel or user space for now). In the future, we could see a third
33tracer being for instance an hypervisor. For some commands, you'll need to
34specify on which domain the command applies (-u or -k). For instance, enabling
35a kernel event, you must specify the kernel domain to the command so we know
36for which tracer this event is for.
37
6991b181
DG
38In order to trace the kernel, the session daemon needs to be running as root.
39LTTng provides the use of a \fBtracing group\fP (default: tracing). Whomever is
40in that group can interact with the root session daemon and thus trace the
41kernel. Session daemons can co-exist meaning that you can have a session daemon
fa072eae
YB
42running as Alice that can be used to trace her applications along side with a
43root daemon or even a Bob daemon. We highly recommend to start the session
6991b181
DG
44daemon at boot time for stable and long term tracing.
45
46Every user-space applications instrumented with lttng-ust(3), will
47automatically register to the session daemon. This feature gives you the
48ability to list available traceable applications and tracepoints on a per user
49basis. (See \fBlist\fP command).
50.SH "OPTIONS"
51
52.PP
53This program follow the usual GNU command line syntax with long options starting with
54two dashes. Below is a summary of the available options.
55.PP
56
57.TP
c9e32613 58.BR "\-h, \-\-help"
6991b181
DG
59Show summary of possible options and commands.
60.TP
c9e32613 61.BR "\-v, \-\-verbose"
6991b181 62Increase verbosity.
d829b38c 63Three levels of verbosity are available which are triggered by putting additional v to
fa072eae 64the option (\-vv or \-vvv)
6991b181 65.TP
c9e32613 66.BR "\-q, \-\-quiet"
6991b181
DG
67Suppress all messages (even errors).
68.TP
c9e32613 69.BR "\-g, \-\-group NAME"
6991b181
DG
70Set unix tracing group name. (default: tracing)
71.TP
c9e32613 72.BR "\-n, \-\-no-sessiond"
6991b181
DG
73Don't automatically spawn a session daemon.
74.TP
391b9c72 75.BR "\-\-sessiond\-path PATH"
6991b181
DG
76Set session daemon full binary path.
77.TP
c9e32613 78.BR "\-\-list\-options"
6991b181
DG
79Simple listing of lttng options.
80.TP
c9e32613 81.BR "\-\-list\-commands"
6991b181
DG
82Simple listing of lttng commands.
83.SH "COMMANDS"
84
85.TP
86\fBadd-context\fP
87.nf
88Add context to event(s) and/or channel(s).
89
391b9c72
DG
90A context is basically extra information appended to a channel. For instance,
91you could ask the tracer to add the PID information for all events in a
92channel. You can also add performance monitoring unit counters (perf PMU) using
93the perf kernel API).
6991b181
DG
94
95For example, this command will add the context information 'prio' and two perf
96counters (hardware branch misses and cache misses), to all events in the trace
97data output:
98
c9e32613 99# lttng add-context \-k \-t prio \-t perf:branch-misses \-t perf:cache-misses
6991b181 100
c9e32613 101Please take a look at the help (\-h/\-\-help) for a detailed list of available
6991b181
DG
102contexts.
103
391b9c72
DG
104If no channel is given (\-c), the context is added to all channels. Otherwise
105the context will be added only to the given channel (\-c).
6991b181 106
c9e32613 107If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181
DG
108file.
109.fi
110
111.B OPTIONS:
112
113.nf
c9e32613 114\-h, \-\-help
6991b181 115 Show summary of possible options and commands.
c9e32613 116\-s, \-\-session NAME
6991b181 117 Apply on session name.
c9e32613 118\-c, \-\-channel NAME
6991b181 119 Apply on channel name.
c9e32613 120\-k, \-\-kernel
6991b181 121 Apply for the kernel tracer
c9e32613 122\-u, \-\-userspace
6991b181 123 Apply for the user-space tracer
c9e32613 124\-t, \-\-type TYPE
6991b181 125 Context type. You can repeat this option on the command line. Please
c9e32613 126 use "lttng add-context \-h" to list all available types.
6991b181
DG
127.fi
128
129.IP
130
131.IP "\fBcalibrate\fP"
132.nf
133Quantify LTTng overhead
134
135The LTTng calibrate command can be used to find out the combined average
136overhead of the LTTng tracer and the instrumentation mechanisms used. This
137overhead can be calibrated in terms of time or using any of the PMU performance
138counter available on the system.
139
140For now, the only calibration implemented is that of the kernel function
141instrumentation (kretprobes).
142
143* Calibrate kernel function instrumentation
144
145Let's use an example to show this calibration. We use an i7 processor with 4
146general-purpose PMU registers. This information is available by issuing dmesg,
147looking for "generic registers".
148
149This sequence of commands will gather a trace executing a kretprobe hooked on
150an empty function, gathering PMU counters LLC (Last Level Cache) misses
c9e32613 151information (see lttng add-context \-\-help to see the list of available PMU
6991b181
DG
152counters).
153
154# lttng create calibrate-function
c9e32613
DG
155# lttng enable-event calibrate \-\-kernel \-\-function lttng_calibrate_kretprobe
156# lttng add-context \-\-kernel \-t perf:LLC-load-misses \-t perf:LLC-store-misses \\
157 \-t perf:LLC-prefetch-misses
6991b181
DG
158# lttng start
159# for a in $(seq 1 10); do \\
c9e32613 160 lttng calibrate \-\-kernel \-\-function;
6991b181
DG
161 done
162# lttng destroy
c9e32613 163# babeltrace $(ls \-1drt ~/lttng-traces/calibrate-function-* | tail \-n 1)
6991b181
DG
164
165The output from babeltrace can be saved to a text file and opened in a
166spreadsheet (e.g. oocalc) to focus on the per-PMU counter delta between
167consecutive "calibrate_entry" and "calibrate_return" events. Note that these
168counters are per-CPU, so scheduling events would need to be present to account
169for migration between CPU. Therefore, for calibration purposes, only events
170staying on the same CPU must be considered.
171
172The average result, for the i7, on 10 samples:
173
174 Average Std.Dev.
175perf_LLC_load_misses: 5.0 0.577
176perf_LLC_store_misses: 1.6 0.516
177perf_LLC_prefetch_misses: 9.0 14.742
178
179As we can notice, the load and store misses are relatively stable across runs
180(their standard deviation is relatively low) compared to the prefetch misses.
181We can conclude from this information that LLC load and store misses can be
182accounted for quite precisely, but prefetches within a function seems to behave
183too erratically (not much causality link between the code executed and the CPU
184prefetch activity) to be accounted for.
185.fi
186
187.B OPTIONS:
188
189.nf
c9e32613 190\-h, \-\-help
6991b181 191 Show summary of possible options and commands.
c9e32613 192\-k, \-\-kernel
6991b181 193 Apply for the kernel tracer
c9e32613 194\-u, \-\-userspace
6991b181 195 Apply for the user-space tracer
c9e32613 196\-\-function
6991b181
DG
197 Dynamic function entry/return probe (default)
198.fi
199
200.IP
201
6b8f2e64 202.IP "\fBcreate\fP [NAME] [OPTIONS]
6991b181
DG
203.nf
204Create tracing session.
205
206A tracing session contains channel(s) which contains event(s). It is domain
207agnostic meaning that you can enable channels and events for either the
208user-space tracer and/or the kernel tracer. It acts like a container
209aggregating multiple tracing sources.
210
211On creation, a \fB.lttngrc\fP file is created in your $HOME directory
212containing the current session name. If NAME is omitted, a session name is
fa072eae 213automatically created having this form: 'auto-yyyymmdd-hhmmss'.
6991b181 214
c9e32613 215If no \fB\-o, \-\-output\fP is specified, the traces will be written in
6991b181
DG
216$HOME/lttng-traces.
217.fi
218
219.B OPTIONS:
220
221.nf
c9e32613 222\-h, \-\-help
6991b181 223 Show summary of possible options and commands.
c9e32613 224\-\-list-options
6991b181 225 Simple listing of options
c9e32613 226\-o, \-\-output PATH
6991b181 227 Specify output path for traces
6b8f2e64
DG
228
229Using these options, each API call can be controlled individually. For
230instance, \-C does not enable the consumer automatically. You'll need the \-e
231option for that.
232
233\-U, \-\-set-uri=URL
785d2d0d 234 Set URL for the consumer output destination. It is persistent for the
6b8f2e64
DG
235 session lifetime. Redo the command to change it. This will set both
236 data and control URL for network.
237\-C, \-\-ctrl-url=URL
238 Set control path URL. (Must use -D also)
239\-D, \-\-data-url=URL
240 Set data path URL. (Must use -C also)
6b8f2e64 241
785d2d0d
DG
242.B URL FORMAT:
243
244proto://[HOST|IP][:PORT1[:PORT2]][/TRACE_PATH]
245
246Supported protocols are (proto):
247> file://...
248 Local filesystem full path.
249
250> net://...
251 This will use the default network transport layer which is TCP for both
252 control (PORT1) and data port (PORT2). The default ports are
253 respectively 5342 and 5343. Note that net[6]:// is not yet supported.
254
255> tcp[6]://...
256 Can only be used with -C and -D together
257
258NOTE: IPv6 address MUST be enclosed in brackets '[]' (rfc2732)
6b8f2e64
DG
259
260.B EXAMPLES:
261
262# lttng create -U net://192.168.1.42
263Uses TCP and default ports for the given destination.
264
265# lttng create -U net6://[fe80::f66d:4ff:fe53:d220]
266Uses TCP, default ports and IPv6.
267
268# lttng create s1 -U net://myhost.com:3229
269Create session s1 and set its consumer to myhost.com on port 3229 for control.
6991b181
DG
270.fi
271
272.IP
273
274.IP "\fBdestroy\fP [OPTIONS] [NAME]"
275.nf
276Teardown tracing session
277
278Free memory on the session daemon and tracer side. It's gone!
279
280If NAME is omitted, the session name is taken from the .lttngrc file.
281.fi
282
283.B OPTIONS:
284
285.nf
c9e32613 286\-h, \-\-help
6991b181 287 Show summary of possible options and commands.
a3c5b534
FG
288\-a, \-\-all
289 Destroy all sessions
c9e32613 290\-\-list-options
6991b181
DG
291 Simple listing of options
292.fi
293
294.IP
295
296.IP "\fBenable-channel\fP NAME[,NAME2,...] [-k|-u] [OPTIONS]"
297.nf
298Enable tracing channel
299
b883c01b
DG
300To enable event, you must first enable a channel which contains event(s).
301
c9e32613 302If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 303file.
7972aab2
DG
304
305It is important to note that if a certain type of buffers is used, the session
306will be set with that type and all other subsequent channel need to have the
307same type.
6991b181
DG
308.fi
309
310.B OPTIONS:
311
312.nf
c9e32613 313\-h, \-\-help
6991b181 314 Show this help
c9e32613 315\-\-list-options
6991b181 316 Simple listing of options
391b9c72 317\-s, \-\-session NAME
6991b181 318 Apply on session name
c9e32613 319\-k, \-\-kernel
6991b181 320 Apply to the kernel tracer
c9e32613 321\-u, \-\-userspace
6991b181
DG
322 Apply to the user-space tracer
323
c9e32613 324\-\-discard
6991b181 325 Discard event when subbuffers are full (default)
c9e32613 326\-\-overwrite
6991b181 327 Flight recorder mode : overwrites events when subbuffers are full
391b9c72 328\-\-subbuf-size SIZE
6991b181 329 Subbuffer size in bytes (default: 4096, kernel default: 262144)
391b9c72 330\-\-num-subbuf NUM
d829b38c 331 Number of subbuffers (default: 4)
93e6c8a0 332 Needs to be a power of 2 for kernel and ust tracers
391b9c72 333\-\-switch-timer USEC
6991b181 334 Switch subbuffer timer interval in usec (default: 0)
93e6c8a0 335 Needs to be a power of 2 for kernel and ust tracers
391b9c72 336\-\-read-timer USEC
6991b181 337 Read timer interval in usec (default: 200)
391b9c72
DG
338\-\-output TYPE
339 Channel output type. Possible values: mmap, splice
7972aab2
DG
340\-\-buffers-uid
341 Use per UID buffer (\-u only). Buffers are shared between applications
342 that have the same UID.
343\-\-buffers-pid
344 Use per PID buffer (\-u only). Each application has its own buffers.
345\-\-buffers-global
346 Use shared buffer for the whole system (\-k only)
6991b181
DG
347.fi
348
349.IP
350
351.IP "\fBenable-event\fP NAME[,NAME2,...] [-k|-u] [OPTIONS]"
352.nf
353Enable tracing event
354
c9e32613 355A tracing event is always assigned to a channel. If \fB\-c, \-\-channel\fP is
6991b181 356omitted, a default channel named '\fBchannel0\fP' is created and the event is
c9e32613 357added to it. For the user-space tracer, using \fB\-a, \-\-all\fP is the same as
6991b181
DG
358using the wildcard "*".
359
c9e32613 360If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181
DG
361file.
362.fi
363
364.B OPTIONS:
365
366.nf
c9e32613 367\-h, \-\-help
6991b181 368 Show summary of possible options and commands.
c9e32613 369\-\-list-options
6991b181 370 Simple listing of options
391b9c72 371\-s, \-\-session NAME
6991b181 372 Apply on session name
391b9c72 373\-c, \-\-channel NAME
6991b181 374 Apply on channel name
c9e32613 375\-a, \-\-all
c5650942
DG
376 Enable all tracepoints and syscalls. This actually enable a single
377 wildcard event "*".
c9e32613 378\-k, \-\-kernel
6991b181 379 Apply for the kernel tracer
c9e32613 380\-u, \-\-userspace
6991b181
DG
381 Apply for the user-space tracer
382
c9e32613 383\-\-tracepoint
6991b181
DG
384 Tracepoint event (default)
385 - userspace tracer supports wildcards at end of string. Don't forget to
386 quote to deal with bash expansion.
387 e.g.:
388 "*"
389 "app_component:na*"
391b9c72
DG
390\-\-loglevel NAME
391 Tracepoint loglevel range from 0 to loglevel. Listed in the help (\-h).
392\-\-loglevel-only NAME
393 Tracepoint loglevel (only this loglevel).
394
395 The loglevel or loglevel-only options should be combined with a
396 tracepoint name or tracepoint wildcard.
c9e32613 397\-\-probe [addr | symbol | symbol+offset]
6991b181
DG
398 Dynamic probe. Addr and offset can be octal (0NNN...), decimal (NNN...)
399 or hexadecimal (0xNNN...)
c9e32613 400\-\-function [addr | symbol | symbol+offset]
6991b181
DG
401 Dynamic function entry/return probe. Addr and offset can be octal
402 (0NNN...), decimal (NNN...) or hexadecimal (0xNNN...)
c9e32613 403\-\-syscall
6b8f2e64
DG
404 System call event. Enabling syscalls tracing (kernel tracer), you will
405 not be able to disable them with disable-event. This is a known
406 limitation. You can disable the entire channel to do the trick.
9bd578f5 407
919e300c 408\-\-filter 'expression'
6b8f2e64
DG
409 Set a filter on a newly enabled event. Filter expression on event
410 fields, event recording depends on evaluation. Only specify on first
411 activation of a given event within a session. Filter only allowed when
412 enabling events within a session before tracing is started. If the
413 filter fails to link with the event within the traced domain, the event
414 will be discarded. Currently, filter is only implemented for the
415 user-space tracer.
416
417 Expression examples:
418
419 'intfield > 500 && intfield < 503'
420 '(stringfield == "test" || intfield != 10) && intfield > 33'
421 'doublefield > 1.1 && intfield < 5.3'
422
423 Wildcards are allowed at the end of strings:
424 'seqfield1 == "te*"'
425 In string literals, the escape character is a '\\'. Use '\\*' for
426 the '*' character, and '\\\\' for the '\\' character.
6991b181
DG
427.fi
428
c9e32613 429.IP "\fBdisable-channel\fP NAME[,NAME2,...] [\-k|\-u] [OPTIONS]"
6991b181
DG
430.nf
431Disable tracing channel
432
433Disabling a channel makes all event(s) in that channel to stop tracing. You can
434enable it back by calling \fBlttng enable-channel NAME\fP again.
435
c9e32613 436If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181
DG
437file.
438.fi
439
440.B OPTIONS:
441
6b8f2e64
DG
442.nf
443\-h, \-\-help
444 Show summary of possible options and commands.
445\-\-list-options
446 Simple listing of options
447\-s, \-\-session NAME
6991b181 448 Apply on session name
c9e32613 449\-k, \-\-kernel
6991b181 450 Apply for the kernel tracer
c9e32613 451\-u, \-\-userspace
6991b181
DG
452 Apply for the user-space tracer
453.fi
454
c9e32613 455.IP "\fBdisable-event\fP NAME[,NAME2,...] [\-k|\-u] [OPTIONS]"
6991b181
DG
456.nf
457Disable tracing event
458
459The event, once disabled, can be re-enabled by calling \fBlttng enable-event
460NAME\fP again.
461
c9e32613 462If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181
DG
463file.
464.fi
465
466.B OPTIONS:
467
468.nf
c9e32613 469\-h, \-\-help
6991b181 470 Show summary of possible options and commands.
c9e32613 471\-\-list-options
6991b181 472 Simple listing of options
391b9c72 473\-s, \-\-session NAME
6991b181 474 Apply on session name
c5650942
DG
475\-a, \-\-all-events
476 Disable all events. This does NOT disable "*" but rather
477 every known events of the session.
c9e32613 478\-k, \-\-kernel
6991b181 479 Apply for the kernel tracer
c9e32613 480\-u, \-\-userspace
6991b181
DG
481 Apply for the user-space tracer
482.fi
483
c9e32613 484.IP "\fBlist\fP [\-k|\-u] [SESSION [SESSION_OPTIONS]]"
6991b181 485.nf
c9e32613 486List tracing session information.
6991b181
DG
487
488With no arguments, it will list available tracing session(s).
489
fa072eae
YB
490With the session name, it will display the details of the session including
491the trace file path, the associated channels and their state (activated
d829b38c 492and deactivated), the activated events and more.
fa072eae 493
c9e32613 494With \-k alone, it will list all available kernel events (except the system
6991b181 495calls events).
c9e32613
DG
496With \-u alone, it will list all available user-space events from registered
497applications. Here is an example of 'lttng list \-u':
6991b181
DG
498
499PID: 7448 - Name: /tmp/lttng-ust/tests/hello/.libs/lt-hello
500 ust_tests_hello:tptest_sighandler (type: tracepoint)
501 ust_tests_hello:tptest (type: tracepoint)
502
503You can now enable any event listed by using the name :
504\fBust_tests_hello:tptest\fP.
505.fi
506
507.B OPTIONS:
508
509.nf
c9e32613 510\-h, \-\-help
6991b181 511 Show summary of possible options and commands.
c9e32613 512\-\-list-options
6991b181 513 Simple listing of options
c9e32613 514\-k, \-\-kernel
d829b38c 515 Select kernel domain
c9e32613 516\-u, \-\-userspace
6991b181
DG
517 Select user-space domain.
518
6b8f2e64
DG
519.B SESSION OPTIONS:
520
c9e32613 521\-c, \-\-channel NAME
6991b181 522 List details of a channel
c9e32613 523\-d, \-\-domain
6991b181
DG
524 List available domain(s)
525.fi
526
527.IP "\fBset-session\fP NAME"
528.nf
529Set current session name
530
531Will change the session name in the .lttngrc file.
532.fi
533
534.B OPTIONS:
535
536.nf
c9e32613 537\-h, \-\-help
6991b181 538 Show summary of possible options and commands.
c9e32613 539\-\-list-options
6991b181
DG
540 Simple listing of options
541.fi
542
543.IP
544
6b8f2e64 545.IP "\fBstart\fP [NAME] [OPTIONS]"
6991b181
DG
546.nf
547Start tracing
548
549It will start tracing for all tracers for a specific tracing session.
550
551If NAME is omitted, the session name is taken from the .lttngrc file.
552.fi
553
554.B OPTIONS:
555
556.nf
c9e32613 557\-h, \-\-help
6991b181 558 Show summary of possible options and commands.
c9e32613 559\-\-list-options
6991b181
DG
560 Simple listing of options
561.fi
562
563.IP
564
6b8f2e64 565.IP "\fBstop\fP [NAME] [OPTIONS]"
6991b181
DG
566.nf
567Stop tracing
568
391b9c72
DG
569It will stop tracing for all tracers for a specific tracing session. Before
570returning, the command checks for data availability meaning that it will wait
571until the trace is readable for the session. Use \-\-no-wait to avoid this
572behavior.
6991b181
DG
573
574If NAME is omitted, the session name is taken from the .lttngrc file.
575.fi
576
577.B OPTIONS:
578
579.nf
c9e32613 580\-h, \-\-help
6991b181 581 Show summary of possible options and commands.
c9e32613 582\-\-list-options
6991b181 583 Simple listing of options
391b9c72
DG
584\-\-no-wait
585 Don't wait for data availability.
6991b181
DG
586.fi
587
588.IP
589
590.IP "\fBversion\fP"
591.nf
592Show version information
593.fi
594
595.B OPTIONS:
596
597.nf
c9e32613 598\-h, \-\-help
6991b181 599 Show summary of possible options and commands.
c9e32613 600\-\-list-options
6991b181
DG
601 Simple listing of options
602.fi
603
604.IP
605
606.IP "\fBview\fP [SESSION_NAME] [OPTIONS]"
607.nf
608View traces of a tracing session
609
610By default, the babeltrace viewer will be used for text viewing.
611
fa072eae
YB
612If SESSION_NAME is omitted, the session name is taken from the .lttngrc file.
613
6991b181
DG
614.fi
615
616.B OPTIONS:
617
618.nf
c9e32613 619\-h, \-\-help
6991b181 620 Show this help
c9e32613 621\-\-list-options
6991b181 622 Simple listing of options
c9e32613 623\-t, \-\-trace-path PATH
6991b181 624 Trace directory path for the viewer
c9e32613 625\-e, \-\-viewer CMD
6991b181
DG
626 Specify viewer and/or options to use
627 This will completely override the default viewers so
628 please make sure to specify the full command. The trace
629 directory path of the session will be appended at the end
630 to the arguments
631.fi
632
c206d957 633.SH "EXIT VALUES"
6b8f2e64
DG
634On success 0 is returned and a positive value on error. Value of 1 means a command
635error, 2 an undefined command, 3 a fatal error and 4 a command warning meaning that
636something went wrong during the command.
c206d957 637
6b8f2e64
DG
638Any other value above 10, please refer to
639.BR <lttng/lttng-error.h>
640for a detailed list or use lttng_strerror() to get a human readable string of
641the error code.
c206d957 642
c206d957 643.PP
6991b181
DG
644.SH "ENVIRONMENT VARIABLES"
645
646.PP
647Note that all command line options override environment variables.
648.PP
649
650.PP
05833633 651.IP "LTTNG_SESSIOND_PATH"
c9e32613
DG
652Allows one to specify the full session daemon binary path to lttng command line
653tool. You can also use \-\-sessiond-path option having the same effect.
6991b181 654.SH "SEE ALSO"
6b8f2e64
DG
655.BR babeltrace(1),
656.BR lttng-ust(3),
657.BR lttng-sessiond(8),
658.BR lttng-relayd(8),
659.BR lttng-health-check(3)
6991b181
DG
660.SH "BUGS"
661
6991b181 662If you encounter any issues or usability problem, please report it on our
6b8f2e64
DG
663mailing list <lttng-dev@lists.lttng.org> to help improve this project or
664at https://bugs.lttng.org which is a bugtracker.
6991b181
DG
665.SH "CREDITS"
666
667.PP
c9e32613 668lttng is distributed under the GNU General Public License version 2. See the file
6991b181
DG
669COPYING for details.
670.PP
671A Web site is available at http://lttng.org for more information on the LTTng
672project.
673.PP
674You can also find our git tree at http://git.lttng.org.
675.PP
676Mailing lists for support and development: <lttng-dev@lists.lttng.org>.
677.PP
678You can find us on IRC server irc.oftc.net (OFTC) in #lttng.
679.PP
680.SH "THANKS"
681
682.PP
683Thanks to Yannick Brosseau without whom this project would never have been so
684lean and mean! Also thanks to the Ericsson teams working on tracing which
fa072eae 685helped us greatly with detailed bug reports and unusual test cases.
6991b181
DG
686
687Thanks to our beloved packager Alexandre Montplaisir-Goncalves (Ubuntu and PPA
688maintainer) and Jon Bernard for our Debian packages.
689
690Special thanks to Michel Dagenais and the DORSAL laboratory at Polytechnique de
691Montreal for the LTTng journey.
c9e32613 692.PP
6991b181
DG
693.SH "AUTHORS"
694
695.PP
696lttng-tools was originally written by Mathieu Desnoyers, Julien Desfossez and
697David Goulet. More people have since contributed to it. It is currently
698maintained by David Goulet <dgoulet@efficios.com>.
699.PP
This page took 0.060477 seconds and 5 git commands to generate.