Fix: Some corrections to the lttng man page
[lttng-tools.git] / doc / man / lttng.1
CommitLineData
b107a0b1 1.TH "LTTNG" "1" "July 18th, 2013" "" ""
6991b181
DG
2
3.SH "NAME"
c5db699c 4lttng \(em LTTng 2.x tracer control command line tool
6991b181
DG
5
6.SH "SYNOPSIS"
7
8.PP
6991b181 9lttng [OPTIONS] <COMMAND>
6991b181
DG
10.SH "DESCRIPTION"
11
12.PP
13The LTTng project aims at providing highly efficient tracing tools for Linux.
7b4572b7 14Its tracers help track down performance issues and debug problems
6991b181
DG
15involving multiple concurrent processes and threads. Tracing across multiple
16systems is also possible.
17
fa072eae 18The \fBlttng\fP command line tool from the lttng-tools package is used to control
7b4572b7
JG
19both kernel and user-space tracing. Every interaction with the tracer should
20be done by this tool or by the liblttng-ctl library provided by the lttng-tools
6991b181
DG
21package.
22
23LTTng uses a session daemon (lttng-sessiond(8)), acting as a tracing registry,
50a3b92a 24which allows you to interact with multiple tracers (kernel and user-space)
6991b181
DG
25inside the same container, a tracing session. Traces can be gathered from the
26kernel and/or instrumented applications (lttng-ust(3)). Aggregating and reading
27those traces is done using the babeltrace(1) text viewer.
28
50a3b92a
DG
29We introduce the notion of \fBtracing domains\fP which is essentially a type of
30tracer (kernel or user space for now). In the future, we could see a third
31tracer being for instance an hypervisor. For some commands, you'll need to
7b4572b7
JG
32specify on which domain the command operates (-u or -k). For instance, the
33kernel domain must be specified when enabling a kernel event.
50a3b92a 34
6991b181
DG
35In order to trace the kernel, the session daemon needs to be running as root.
36LTTng provides the use of a \fBtracing group\fP (default: tracing). Whomever is
37in that group can interact with the root session daemon and thus trace the
7b4572b7 38kernel. Session daemons can co-exist, meaning that you can have a session daemon
fa072eae 39running as Alice that can be used to trace her applications along side with a
7b4572b7 40root daemon or even a Bob daemon. We highly recommend starting the session
6991b181
DG
41daemon at boot time for stable and long term tracing.
42
7b4572b7 43All user-space applications instrumented with lttng-ust(3) will
6991b181
DG
44automatically register to the session daemon. This feature gives you the
45ability to list available traceable applications and tracepoints on a per user
46basis. (See \fBlist\fP command).
47.SH "OPTIONS"
48
49.PP
50This program follow the usual GNU command line syntax with long options starting with
51two dashes. Below is a summary of the available options.
52.PP
53
54.TP
c9e32613 55.BR "\-h, \-\-help"
6991b181
DG
56Show summary of possible options and commands.
57.TP
c9e32613 58.BR "\-v, \-\-verbose"
6991b181 59Increase verbosity.
d829b38c 60Three levels of verbosity are available which are triggered by putting additional v to
fa072eae 61the option (\-vv or \-vvv)
6991b181 62.TP
c9e32613 63.BR "\-q, \-\-quiet"
6991b181
DG
64Suppress all messages (even errors).
65.TP
c9e32613 66.BR "\-g, \-\-group NAME"
6991b181
DG
67Set unix tracing group name. (default: tracing)
68.TP
c9e32613 69.BR "\-n, \-\-no-sessiond"
6991b181
DG
70Don't automatically spawn a session daemon.
71.TP
391b9c72 72.BR "\-\-sessiond\-path PATH"
6991b181
DG
73Set session daemon full binary path.
74.TP
c9e32613 75.BR "\-\-list\-options"
6991b181
DG
76Simple listing of lttng options.
77.TP
c9e32613 78.BR "\-\-list\-commands"
6991b181
DG
79Simple listing of lttng commands.
80.SH "COMMANDS"
81
812a5eb7 82.PP
ee2758e5 83\fBadd-context\fP [OPTIONS]
812a5eb7 84.RS
6991b181
DG
85Add context to event(s) and/or channel(s).
86
391b9c72
DG
87A context is basically extra information appended to a channel. For instance,
88you could ask the tracer to add the PID information for all events in a
89channel. You can also add performance monitoring unit counters (perf PMU) using
90the perf kernel API).
6991b181
DG
91
92For example, this command will add the context information 'prio' and two perf
93counters (hardware branch misses and cache misses), to all events in the trace
94data output:
95
812a5eb7
MD
96.nf
97# lttng add-context \-k \-t prio \-t perf:branch-misses \\
98 \-t perf:cache-misses
99.fi
6991b181 100
c9e32613 101Please take a look at the help (\-h/\-\-help) for a detailed list of available
6991b181
DG
102contexts.
103
bd337b98
DG
104If no channel is given (\-c), the context is added to all channels that were
105already enabled. If the session has no channel, a default channel is created.
31ea4846 106Otherwise the context will be added only to the given channel (\-c).
6991b181 107
c9e32613 108If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 109file.
6991b181
DG
110
111.B OPTIONS:
112
812a5eb7
MD
113.TP
114.BR "\-h, \-\-help"
115Show summary of possible options and commands.
116.TP
117.BR "\-s, \-\-session NAME"
118Apply on session name.
119.TP
120.BR "\-c, \-\-channel NAME"
121Apply on channel name.
122.TP
123.BR "\-k, \-\-kernel"
124Apply for the kernel tracer
125.TP
126.BR "\-u, \-\-userspace"
127Apply for the user-space tracer
128.TP
129.BR "\-t, \-\-type TYPE"
130Context type. You can repeat this option on the command line. Please
131use "lttng add-context \-h" to list all available types.
132.RE
133.PP
6991b181 134
22019883
MD
135.PP
136\fBcalibrate\fP [OPTIONS]
137.RS
6991b181
DG
138Quantify LTTng overhead
139
140The LTTng calibrate command can be used to find out the combined average
141overhead of the LTTng tracer and the instrumentation mechanisms used. This
142overhead can be calibrated in terms of time or using any of the PMU performance
143counter available on the system.
144
145For now, the only calibration implemented is that of the kernel function
146instrumentation (kretprobes).
147
148* Calibrate kernel function instrumentation
149
150Let's use an example to show this calibration. We use an i7 processor with 4
151general-purpose PMU registers. This information is available by issuing dmesg,
152looking for "generic registers".
153
154This sequence of commands will gather a trace executing a kretprobe hooked on
155an empty function, gathering PMU counters LLC (Last Level Cache) misses
c9e32613 156information (see lttng add-context \-\-help to see the list of available PMU
6991b181
DG
157counters).
158
22019883 159.nf
6991b181 160# lttng create calibrate-function
22019883
MD
161# lttng enable-event calibrate \-\-kernel \\
162 \-\-function lttng_calibrate_kretprobe
163# lttng add-context \-\-kernel \-t perf:LLC-load-misses \\
164 \-t perf:LLC-store-misses \\
165 \-t perf:LLC-prefetch-misses
6991b181
DG
166# lttng start
167# for a in $(seq 1 10); do \\
c9e32613 168 lttng calibrate \-\-kernel \-\-function;
6991b181
DG
169 done
170# lttng destroy
22019883
MD
171# babeltrace $(ls \-1drt ~/lttng-traces/calibrate-function-* \\
172 | tail \-n 1)
173.fi
6991b181
DG
174
175The output from babeltrace can be saved to a text file and opened in a
176spreadsheet (e.g. oocalc) to focus on the per-PMU counter delta between
177consecutive "calibrate_entry" and "calibrate_return" events. Note that these
178counters are per-CPU, so scheduling events would need to be present to account
179for migration between CPU. Therefore, for calibration purposes, only events
180staying on the same CPU must be considered.
181
182The average result, for the i7, on 10 samples:
183
22019883 184.nf
6991b181
DG
185 Average Std.Dev.
186perf_LLC_load_misses: 5.0 0.577
187perf_LLC_store_misses: 1.6 0.516
188perf_LLC_prefetch_misses: 9.0 14.742
22019883 189.fi
6991b181
DG
190
191As we can notice, the load and store misses are relatively stable across runs
192(their standard deviation is relatively low) compared to the prefetch misses.
193We can conclude from this information that LLC load and store misses can be
194accounted for quite precisely, but prefetches within a function seems to behave
195too erratically (not much causality link between the code executed and the CPU
196prefetch activity) to be accounted for.
6991b181
DG
197
198.B OPTIONS:
199
22019883
MD
200.TP
201.BR "\-h, \-\-help"
202Show summary of possible options and commands.
203.TP
204.BR "\-k, \-\-kernel"
205Apply for the kernel tracer
206.TP
207.BR "\-u, \-\-userspace"
208Apply for the user-space tracer
209.TP
210.BR "\-\-function"
211Dynamic function entry/return probe (default)
212.RE
213.PP
6991b181 214
ee2758e5 215.PP
feb3ca56 216\fBcreate\fP [NAME] [OPTIONS]
ee2758e5 217.RS
6991b181
DG
218Create tracing session.
219
220A tracing session contains channel(s) which contains event(s). It is domain
7b4572b7 221agnostic, meaning that channels and events can be enabled for the
6991b181
DG
222user-space tracer and/or the kernel tracer. It acts like a container
223aggregating multiple tracing sources.
224
225On creation, a \fB.lttngrc\fP file is created in your $HOME directory
226containing the current session name. If NAME is omitted, a session name is
fa072eae 227automatically created having this form: 'auto-yyyymmdd-hhmmss'.
6991b181 228
c9e32613 229If no \fB\-o, \-\-output\fP is specified, the traces will be written in
6991b181 230$HOME/lttng-traces.
feb0f3e5
AM
231
232The $HOME environment variable can be overridden by defining the environment
233variable LTTNG_HOME. This is useful when the user running the commands has
234a non-writeable home directory.
6991b181
DG
235
236.B OPTIONS:
237
ee2758e5
MD
238.TP
239.BR "\-h, \-\-help"
240Show summary of possible options and commands.
241.TP
242.BR "\-\-list-options"
243Simple listing of options
244.TP
245.BR "\-o, \-\-output PATH"
246Specify output path for traces
247.TP
248.BR "\-\-no-output"
7b4572b7 249Traces will not be output
ee2758e5
MD
250.TP
251.BR "\-\-snapshot"
252Set the session in snapshot mode. Created in no-output mode and uses the
7b4572b7 253URL, if one is specified, as the default snapshot output. Every channel will be set
ee2758e5 254in overwrite mode and with mmap output (splice not supported).
6b8f2e64 255
ee2758e5
MD
256.TP
257.BR "\-U, \-\-set-url=URL"
258Set URL for the consumer output destination. It is persistent for the
259session lifetime. Redo the command to change it. This will set both data
260and control URL for network.
261.TP
262.BR "\-C, \-\-ctrl-url=URL"
263Set control path URL. (Must use -D also)
264.TP
265.BR "\-D, \-\-data-url=URL"
266Set data path URL. (Must use -C also)
267.PP
6b8f2e64
DG
268Using these options, each API call can be controlled individually. For
269instance, \-C does not enable the consumer automatically. You'll need the \-e
270option for that.
271
785d2d0d
DG
272.B URL FORMAT:
273
274proto://[HOST|IP][:PORT1[:PORT2]][/TRACE_PATH]
275
276Supported protocols are (proto):
ee2758e5
MD
277.TP
278.BR "file://..."
279Local filesystem full path.
785d2d0d 280
ee2758e5
MD
281.TP
282.BR "net://..."
283This will use the default network transport layer which is TCP for both
284control (PORT1) and data port (PORT2). The default ports are
285respectively 5342 and 5343. Note that net[6]:// is not yet supported.
785d2d0d 286
ee2758e5
MD
287.TP
288.BR "tcp[6]://..."
289Can only be used with -C and -D together
785d2d0d
DG
290
291NOTE: IPv6 address MUST be enclosed in brackets '[]' (rfc2732)
6b8f2e64
DG
292
293.B EXAMPLES:
294
ee2758e5 295.nf
6b8f2e64 296# lttng create -U net://192.168.1.42
ee2758e5 297.fi
6b8f2e64
DG
298Uses TCP and default ports for the given destination.
299
ee2758e5 300.nf
6b8f2e64 301# lttng create -U net6://[fe80::f66d:4ff:fe53:d220]
ee2758e5 302.fi
6b8f2e64
DG
303Uses TCP, default ports and IPv6.
304
ee2758e5 305.nf
6b8f2e64 306# lttng create s1 -U net://myhost.com:3229
6991b181 307.fi
ee2758e5
MD
308Create session s1 and set its consumer to myhost.com on port 3229 for control.
309.RE
310.PP
6991b181 311
f2b14ef1
MD
312.PP
313\fBdestroy\fP [NAME] [OPTIONS]
314.RS
6991b181
DG
315Teardown tracing session
316
317Free memory on the session daemon and tracer side. It's gone!
318
319If NAME is omitted, the session name is taken from the .lttngrc file.
6991b181
DG
320
321.B OPTIONS:
322
f2b14ef1
MD
323.TP
324.BR "\-h, \-\-help"
325Show summary of possible options and commands.
326.TP
327.BR "\-a, \-\-all"
328Destroy all sessions
329.TP
330.BR "\-\-list-options"
331Simple listing of options
332.RE
333.PP
6991b181 334
05be3802
MD
335.PP
336\fBenable-channel\fP NAME[,NAME2,...] (\-k | \-u) [OPTIONS]
337.RS
6991b181
DG
338Enable tracing channel
339
004f3466
DG
340To enable an event, you must enable both the event and the channel that
341contains it.
b883c01b 342
c9e32613 343If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 344file.
7972aab2 345
05be3802
MD
346Exactly one of \-k or -u must be specified.
347
7972aab2 348It is important to note that if a certain type of buffers is used, the session
bd337b98 349will be set with that type and all other subsequent channel needs to have the
7972aab2 350same type.
bd337b98 351
d2f11c4a
DG
352Note that once the session has been started and enabled on the tracer side,
353it's not possible anymore to enable a new channel for that session.
6991b181
DG
354
355.B OPTIONS:
356
05be3802
MD
357.TP
358.BR "\-h, \-\-help"
359Show this help
360.TP
361.BR "\-\-list-options"
362Simple listing of options
363.TP
364.BR "\-s, \-\-session NAME"
365Apply on session name
366.TP
367.BR "\-k, \-\-kernel"
368Apply to the kernel tracer
369.TP
370.BR "\-u, \-\-userspace"
371Apply to the user-space tracer
372.TP
373.BR "\-\-discard"
374Discard event when subbuffers are full (default)
375.TP
376.BR "\-\-overwrite"
377Flight recorder mode : overwrites events when subbuffers are full
378.TP
379.BR "\-\-subbuf-size SIZE"
380Subbuffer size in bytes {+k,+M,+G}.
381(default UST uid: 131072, UST pid: 4096, kernel: 262144, metadata: 4096)
382Rounded up to the next power of 2.
383
384The minimum subbuffer size, for each tracer, is the max value between
385the default above and the system page size. You can issue this command
386to get the current page size on your system: \fB$ getconf PAGE_SIZE\fP
387.TP
388.BR "\-\-num-subbuf NUM"
389Number of subbuffers. (default UST uid: 4, UST pid: 4, kernel: 4,
390metadata: 2) Rounded up to the next power of 2.
391.TP
392.BR "\-\-switch-timer USEC"
393Switch subbuffer timer interval in µsec.
394(default UST uid: 0, UST pid: 0, kernel: 0, metadata: 0)
395.TP
396.BR "\-\-read-timer USEC"
397Read timer interval in µsec.
398(default UST uid: 0, UST pid: 0, kernel: 200000, metadata: 0)
399.TP
400.BR "\-\-output TYPE"
401Channel output type. Possible values: mmap, splice
402(default UST uid: mmap, UST pid: mmap, kernel: splice, metadata: mmap)
403.TP
404.BR "\-\-buffers-uid"
405Use per UID buffer (\-u only). Buffers are shared between applications
406that have the same UID.
407.TP
408.BR "\-\-buffers-pid"
409Use per PID buffer (\-u only). Each application has its own buffers.
410.TP
411.BR "\-\-buffers-global"
412Use shared buffer for the whole system (\-k only)
413.TP
414.BR "\-C, \-\-tracefile-size SIZE"
415Maximum size of each tracefile within a stream (in bytes).
4160 means unlimited. (default: 0)
417.TP
418.BR "\-W, \-\-tracefile-count COUNT"
419Used in conjunction with \-C option, this will limit the number of files
420created to the specified count. 0 means unlimited. (default: 0)
1624d5b7
JD
421
422.B EXAMPLES:
423
05be3802
MD
424.nf
425$ lttng enable-channel -k -C 4096 -W 32 chan1
426.fi
7b4572b7 427For each stream, the maximum size of each trace file will be 4096 bytes and
cea28771 428there will be a maximum of 32 different files. The file count is appended after
1624d5b7
JD
429the stream number as seen in the following example. The last trace file is
430smaller than 4096 since it was not completely filled.
431
05be3802 432.nf
1624d5b7
JD
433 ~/lttng-traces/[...]/chan1_0_0 (4096)
434 ~/lttng-traces/[...]/chan1_0_1 (4096)
435 ~/lttng-traces/[...]/chan1_0_2 (3245)
436 ~/lttng-traces/[...]/chan1_1_0 (4096)
437 ...
05be3802 438.fi
1624d5b7 439
05be3802
MD
440.nf
441$ lttng enable-channel -k -C 4096
442.fi
1624d5b7
JD
443This will create trace files of 4096 bytes and will create new ones as long as
444there is data available.
05be3802
MD
445.RE
446.PP
6991b181 447
6a240cd9
MD
448.PP
449\fBenable-event\fP NAME[,NAME2,...] [-k|-u] [OPTIONS]
450.RS
6991b181
DG
451Enable tracing event
452
c9e32613 453A tracing event is always assigned to a channel. If \fB\-c, \-\-channel\fP is
6991b181 454omitted, a default channel named '\fBchannel0\fP' is created and the event is
85076754
MD
455added to it. If \fB\-c, \-\-channel\fP is omitted, but a non-default
456channel already exists within the session, an error is returned. For the
457user-space tracer, using \fB\-a, \-\-all\fP is the same as using the
458wildcard "*".
6991b181 459
c9e32613 460If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 461file.
6991b181
DG
462
463.B OPTIONS:
464
6a240cd9
MD
465.TP
466.BR "\-h, \-\-help"
467Show summary of possible options and commands.
468.TP
469.BR "\-\-list-options"
470Simple listing of options
471.TP
472.BR "\-s, \-\-session NAME"
473Apply on session name
474.TP
475.BR "\-c, \-\-channel NAME"
476Apply on channel name
477.TP
478.BR "\-a, \-\-all"
7b4572b7 479Enable all tracepoints and syscalls. This actually enables a single
6a240cd9
MD
480wildcard event "*".
481.TP
482.BR "\-k, \-\-kernel"
483Apply for the kernel tracer
484.TP
485.BR "\-u, \-\-userspace"
486Apply for the user-space tracer
487.TP
488.BR "\-\-tracepoint"
7b4572b7 489Tracepoint event (default). Userspace tracer supports wildcards at the end
6a240cd9
MD
490of string. Don't forget to quote to deal with bash expansion.
491e.g.:
6991b181 492.nf
6991b181
DG
493 "*"
494 "app_component:na*"
6991b181 495.fi
6a240cd9
MD
496.TP
497.BR "\-\-loglevel NAME"
498Tracepoint loglevel range from 0 to loglevel. Listed in the help (\-h).
499.TP
500.BR "\-\-loglevel-only NAME"
501Tracepoint loglevel (only this loglevel).
502The loglevel or loglevel-only options should be combined with a
503tracepoint name or tracepoint wildcard.
504.TP
505.BR "\-\-probe (addr | symbol | symbol+offset)"
506Dynamic probe. Addr and offset can be octal (0NNN...), decimal (NNN...)
507or hexadecimal (0xNNN...)
508.TP
509.BR "\-\-function (addr | symbol | symbol+offset)"
510Dynamic function entry/return probe. Addr and offset can be octal
511(0NNN...), decimal (NNN...) or hexadecimal (0xNNN...)
512.TP
513.BR "\-\-syscall"
514System call event. Enabling syscalls tracing (kernel tracer), you will
515not be able to disable them with disable-event. This is a known
516limitation. You can disable the entire channel to do the trick.
517.TP
518.BR "\-\-filter 'expression'"
519Set a filter on a newly enabled event. Filter expression on event
7b4572b7
JG
520fields and context. The event will be recorded if the filter's
521expression evaluates to TRUE. Only specify on first activation of a
522given event within a session.
523Specifying a filter is only allowed when enabling events within a session before
6a240cd9
MD
524tracing is started. If the filter fails to link with the event
525within the traced domain, the event will be discarded.
7b4572b7 526Filtering is currently only implemented for the user-space tracer.
6a240cd9
MD
527
528Expression examples:
529
530.nf
531 'intfield > 500 && intfield < 503'
532 '(strfield == "test" || intfield != 10) && intfield > 33'
533 'doublefield > 1.1 && intfield < 5.3'
534.fi
535
536Wildcards are allowed at the end of strings:
537 'seqfield1 == "te*"'
538In string literals, the escape character is a '\\'. Use '\\*' for
7b4572b7
JG
539the '*' character, and '\\\\' for the '\\' character sequence. Wildcard
540matches any sequence of characters, including an empty sub-string
541(matches 0 or more characters).
6a240cd9 542
7b4572b7
JG
543Context information can be used for filtering. The examples below shows
544usage of context filtering on the process name (using a wildcard), process ID
545range, and unique thread ID. The process and thread IDs of
6a240cd9
MD
546running applications can be found under columns "PID" and "LWP" of the
547"ps -eLf" command.
548
549.nf
550 '$ctx.procname == "demo*"'
551 '$ctx.vpid >= 4433 && $ctx.vpid < 4455'
552 '$ctx.vtid == 1234'
553.fi
554
555.RE
556.PP
6991b181 557
272c6a17
MD
558.PP
559\fBdisable-channel\fP NAME[,NAME2,...] (\-k | \-u) [OPTIONS]
560.RS
6991b181
DG
561Disable tracing channel
562
7b4572b7
JG
563Disabling a channel disables the tracing of all of the channel's events. A channel
564can be reenabled by calling \fBlttng enable-channel NAME\fP again.
6991b181 565
c9e32613 566If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 567file.
6991b181
DG
568
569.B OPTIONS:
570
272c6a17
MD
571.TP
572.BR "\-h, \-\-help"
573Show summary of possible options and commands.
574.TP
575.BR "\-\-list-options"
576Simple listing of options
577.TP
578.BR "\-s, \-\-session NAME"
579Apply on session name
580.TP
581.BR "\-k, \-\-kernel"
582Apply for the kernel tracer
583.TP
584.BR "\-u, \-\-userspace"
585Apply for the user-space tracer
586.RE
587.PP
6991b181 588
c138a39b
MD
589.PP
590\fBdisable-event\fP NAME[,NAME2,...] (\-k | \-u) [OPTIONS]
591.RS
6991b181
DG
592Disable tracing event
593
594The event, once disabled, can be re-enabled by calling \fBlttng enable-event
595NAME\fP again.
596
c9e32613 597If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
6991b181 598file.
6991b181 599
85076754
MD
600If \fB\-c, \-\-channel\fP is omitted, the default channel name is used.
601If \fB\-c, \-\-channel\fP is omitted, but a non-default channel already
602exists within the session, an error is returned.
603
6991b181
DG
604.B OPTIONS:
605
c138a39b
MD
606.TP
607.BR "\-h, \-\-help"
608Show summary of possible options and commands.
609.TP
610.BR "\-\-list-options"
611Simple listing of options
612.TP
613.BR "\-s, \-\-session NAME"
614Apply on session name
615.TP
85076754
MD
616.BR "\-c, \-\-channel NAME"
617Apply on channel name
618.TP
c138a39b
MD
619.BR "\-a, \-\-all-events"
620Disable all events. This does NOT disable "*" but rather every known
621events of the session.
622.TP
623.BR "\-k, \-\-kernel"
624Apply for the kernel tracer
625.TP
626.BR "\-u, \-\-userspace"
627Apply for the user-space tracer
628.RE
629.PP
6991b181 630
747361fe
MD
631.PP
632\fBlist\fP [OPTIONS] [SESSION [SESSION OPTIONS]]
633.RS
c9e32613 634List tracing session information.
6991b181
DG
635
636With no arguments, it will list available tracing session(s).
637
fa072eae
YB
638With the session name, it will display the details of the session including
639the trace file path, the associated channels and their state (activated
d829b38c 640and deactivated), the activated events and more.
fa072eae 641
c9e32613 642With \-k alone, it will list all available kernel events (except the system
6991b181 643calls events).
c9e32613
DG
644With \-u alone, it will list all available user-space events from registered
645applications. Here is an example of 'lttng list \-u':
6991b181 646
747361fe 647.nf
6991b181
DG
648PID: 7448 - Name: /tmp/lttng-ust/tests/hello/.libs/lt-hello
649 ust_tests_hello:tptest_sighandler (type: tracepoint)
650 ust_tests_hello:tptest (type: tracepoint)
747361fe 651.fi
6991b181
DG
652
653You can now enable any event listed by using the name :
654\fBust_tests_hello:tptest\fP.
6991b181
DG
655
656.B OPTIONS:
657
747361fe
MD
658.TP
659.BR "\-h, \-\-help"
660Show summary of possible options and commands.
661.TP
662.BR "\-\-list-options"
663Simple listing of options
664.TP
665.BR "\-k, \-\-kernel"
666Select kernel domain
667.TP
668.BR "\-u, \-\-userspace"
669Select user-space domain.
6991b181 670
747361fe 671.PP
6b8f2e64
DG
672.B SESSION OPTIONS:
673
747361fe
MD
674.TP
675.BR "\-c, \-\-channel NAME"
676List details of a channel
677.TP
678.BR "\-d, \-\-domain"
679List available domain(s)
680.RE
681.PP
6991b181 682
7c96a096
MD
683.PP
684\fBset-session\fP NAME [OPTIONS]
685.RS
6991b181
DG
686Set current session name
687
688Will change the session name in the .lttngrc file.
6991b181
DG
689
690.B OPTIONS:
691
7c96a096
MD
692.TP
693.BR "\-h, \-\-help"
694Show summary of possible options and commands.
695.TP
696.BR "\-\-list-options"
697Simple listing of options
698.RE
699.PP
6991b181 700
8df3bfe9
MD
701.PP
702\fBsnapshot\fP [OPTIONS] ACTION
703.RS
b872baea 704Snapshot command for LTTng session.
b872baea
DG
705
706.B OPTIONS:
707
8df3bfe9
MD
708.TP
709.BR "\-h, \-\-help"
710Show summary of possible options and commands.
711.TP
712.BR "\-\-list-options"
713Simple listing of options
b872baea 714
8df3bfe9 715.PP
b872baea
DG
716.B ACTION:
717
8df3bfe9 718.TP
b872baea
DG
719\fBadd-output\fP [-m <SIZE>] [-s <NAME>] [-n <NAME>] <URL> | -C <URL> -D <URL>
720
721Setup and add an snapshot output for a session. Output are the destination
722where the snapshot will be sent. Only one output is permitted. To change it,
723you'll need to delete it and add back the new one.
724
8df3bfe9 725.TP
b872baea
DG
726\fBdel-output\fP ID | NAME [-s <NAME>]
727
728Delete an output for a session using the ID. You can either specify the
729output's ID that can be found with list-output or the name.
730
8df3bfe9 731.TP
b872baea
DG
732\fBlist-output\fP [-s <NAME>]
733
734List the output of a session. Attributes of the output are printed.
735
8df3bfe9 736.TP
b872baea
DG
737\fBrecord\fP [-m <SIZE>] [-s <NAME>] [-n <NAME>] [<URL> | -C <URL> -D <URL>]
738
739Snapshot a session's buffer(s) for all domains. If an URL is specified, it is
740used instead of a previously added output. Specifying only a name or/and a max
741size will override the current output values. For instance, you can record a
742snapshot with a custom maximum size or with a different name.
743
8df3bfe9 744.nf
ceaf583b 745$ lttng snapshot add-output -n mysnapshot file:///data/snapshot
b872baea
DG
746[...]
747$ lttng snapshot record -n new_name_snapshot
8df3bfe9 748.fi
b872baea
DG
749
750The above will create a snapshot in /data/snapshot/new_name_snapshot* directory
751rather then in mysnapshot*/
b872baea 752
8df3bfe9
MD
753.PP
754.B DETAILED ACTION OPTIONS
b872baea 755
8df3bfe9
MD
756.TP
757.BR "\-s, \-\-session NAME"
758Apply to session name.
759.TP
760.BR "\-n, \-\-name NAME"
761Name of the snapshot's output.
762.TP
763.BR "\-m, \-\-max-size SIZE"
a8f307d8
SM
764Maximum size in bytes of the snapshot. The maxium size does not include the
765metadata file. Human readable format is accepted: {+k,+M,+G}. For instance,
766\-\-max-size 5M
8df3bfe9
MD
767.TP
768.BR "\-C, \-\-ctrl-url URL"
769Set control path URL. (Must use -D also)
770.TP
771.BR "\-D, \-\-data-url URL"
772Set data path URL. (Must use -C also)
773.RE
774.PP
b872baea 775
afb8ca1b
MD
776.PP
777\fBstart\fP [NAME] [OPTIONS]
778.RS
6991b181
DG
779Start tracing
780
781It will start tracing for all tracers for a specific tracing session.
6991b181 782If NAME is omitted, the session name is taken from the .lttngrc file.
6991b181
DG
783
784.B OPTIONS:
785
afb8ca1b
MD
786.TP
787.BR "\-h, \-\-help"
788Show summary of possible options and commands.
789.TP
790.BR "\-\-list-options"
791Simple listing of options
792.RE
793.PP
6991b181 794
6c09bfdb
MD
795.PP
796\fBstop\fP [NAME] [OPTIONS]
797.RS
6991b181
DG
798Stop tracing
799
391b9c72
DG
800It will stop tracing for all tracers for a specific tracing session. Before
801returning, the command checks for data availability meaning that it will wait
802until the trace is readable for the session. Use \-\-no-wait to avoid this
803behavior.
6991b181
DG
804
805If NAME is omitted, the session name is taken from the .lttngrc file.
6991b181
DG
806
807.B OPTIONS:
808
6c09bfdb
MD
809.TP
810.BR "\-h, \-\-help"
811Show summary of possible options and commands.
812.TP
813.BR "\-\-list-options"
814Simple listing of options
815.TP "\-\-no-wait"
816Don't wait for data availability.
817.RE
818.PP
6991b181 819
5975c30a
MD
820.PP
821\fBversion\fP
822.RS
6991b181 823Show version information
6991b181
DG
824
825.B OPTIONS:
826
5975c30a
MD
827.TP
828.BR "\-h, \-\-help"
829Show summary of possible options and commands.
830.TP
831.BR "\-\-list-options"
832Simple listing of options
833.RE
834.PP
6991b181 835
5b4c1410
MD
836.PP
837\fBview\fP [SESSION_NAME] [OPTIONS]
838.RS
839View traces of a tracing session. By default, the babeltrace viewer
840will be used for text viewing. If SESSION_NAME is omitted, the session
841name is taken from the .lttngrc file.
6991b181
DG
842
843.B OPTIONS:
844
5b4c1410
MD
845.TP
846.BR "\-h, \-\-help"
847Show this help
848.TP
849.BR "\-\-list-options"
850Simple listing of options
851.TP
852.BR "\-t, \-\-trace-path PATH"
853Trace directory path for the viewer
854.TP
855.BR "\-e, \-\-viewer CMD"
856Specify viewer and/or options to use This will completely override the
857default viewers so please make sure to specify the full command. The
858trace directory path of the session will be appended at the end to the
859arguments
860.RE
861.PP
6991b181 862
c206d957 863.SH "EXIT VALUES"
b107a0b1 864.PP
6b8f2e64
DG
865On success 0 is returned and a positive value on error. Value of 1 means a command
866error, 2 an undefined command, 3 a fatal error and 4 a command warning meaning that
867something went wrong during the command.
c206d957 868
6b8f2e64 869Any other value above 10, please refer to
b107a0b1 870.BR "<lttng/lttng-error.h>"
6b8f2e64
DG
871for a detailed list or use lttng_strerror() to get a human readable string of
872the error code.
c206d957 873.PP
b107a0b1 874
6991b181
DG
875.SH "ENVIRONMENT VARIABLES"
876
877.PP
878Note that all command line options override environment variables.
879.PP
880
881.PP
05833633 882.IP "LTTNG_SESSIOND_PATH"
c9e32613
DG
883Allows one to specify the full session daemon binary path to lttng command line
884tool. You can also use \-\-sessiond-path option having the same effect.
b107a0b1
MD
885.PP
886
6991b181 887.SH "SEE ALSO"
6b8f2e64
DG
888.BR babeltrace(1),
889.BR lttng-ust(3),
890.BR lttng-sessiond(8),
891.BR lttng-relayd(8),
892.BR lttng-health-check(3)
b107a0b1 893
6991b181
DG
894.SH "BUGS"
895
b107a0b1 896.PP
6991b181 897If you encounter any issues or usability problem, please report it on our
6b8f2e64
DG
898mailing list <lttng-dev@lists.lttng.org> to help improve this project or
899at https://bugs.lttng.org which is a bugtracker.
b107a0b1
MD
900.PP
901
6991b181
DG
902.SH "CREDITS"
903
904.PP
c9e32613 905lttng is distributed under the GNU General Public License version 2. See the file
6991b181
DG
906COPYING for details.
907.PP
908A Web site is available at http://lttng.org for more information on the LTTng
909project.
910.PP
911You can also find our git tree at http://git.lttng.org.
912.PP
913Mailing lists for support and development: <lttng-dev@lists.lttng.org>.
914.PP
915You can find us on IRC server irc.oftc.net (OFTC) in #lttng.
916.PP
917.SH "THANKS"
918
919.PP
920Thanks to Yannick Brosseau without whom this project would never have been so
921lean and mean! Also thanks to the Ericsson teams working on tracing which
fa072eae 922helped us greatly with detailed bug reports and unusual test cases.
6991b181
DG
923
924Thanks to our beloved packager Alexandre Montplaisir-Goncalves (Ubuntu and PPA
925maintainer) and Jon Bernard for our Debian packages.
926
927Special thanks to Michel Dagenais and the DORSAL laboratory at Polytechnique de
928Montreal for the LTTng journey.
c9e32613 929.PP
6991b181
DG
930.SH "AUTHORS"
931
932.PP
933lttng-tools was originally written by Mathieu Desnoyers, Julien Desfossez and
934David Goulet. More people have since contributed to it. It is currently
935maintained by David Goulet <dgoulet@efficios.com>.
936.PP
This page took 0.069957 seconds and 4 git commands to generate.