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