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