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