8 lttng-snapshot - Take a snapshot of an LTTng tracing session
13 Take a tracing session snapshot:
16 *lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *snapshot* *record* [option:--max-size='SIZE']
17 [option:--name='NAME'] [option:--session='SESSION']
18 [option:--ctrl-url='URL' option:--data-url='URL' | 'URL']
20 Add a snapshot output to a tracing session:
23 *lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *snapshot* *add-output* [option:--max-size='SIZE']
24 [option:--name='NAME'] [option:--session='SESSION']
25 (option:--ctrl-url='URL' option:--data-url='URL' | 'URL')
27 Show the snapshot output of a tracing session:
30 *lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *snapshot* *list-output* [option:--session='SESSION']
32 Remove the snapshot output from a tracing session:
35 *lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *snapshot* *del-output* [option:--session='SESSION'] *1*
40 The `lttng snapshot` command can take a snapshot of, add or remove a
41 snapshot output, and show the snapshot output of:
43 With the option:--session='SESSION' option::
44 The tracing session named 'SESSION'.
46 Without the option:--session option::
47 The current tracing session (see man:lttng-concepts(7) to learn more
48 about the current tracing session).
50 See man:lttng-concepts(7) to learn more about tracing sessions.
52 A _snapshot_ is a dump of the current sub-buffers of all the channels of
53 the selected tracing session.
55 When LTTng takes a snapshot, it sends the sub-buffer dump of the
56 selected tracing session to the local file system or over the network to
57 a listening relay daemon (man:lttng-relayd(8)). See the
58 ``<<output,Snapshot output>>'' section below to learn more.
60 When LTTng takes a snapshot, it does :not: clear the sub-buffers of the
61 selected tracing session. In other words, different snapshots of the
62 selected tracing session can contain the same event records.
64 You must have created the selected tracing session in snapshot mode (see
65 the nloption:--snapshot option of the man:lttng-create(1) command as
66 well as man:lttng-concepts(7) to learn more about tracing session modes)
67 to use the `snapshot` command.
69 A `snapshot-session` trigger action can also take a tracing session
70 snapshot (see man:lttng-add-trigger(1)).
72 See the ``<<examples,EXAMPLES>>'' section below for usage examples.
74 If you want, instead, to keep all the trace data, but divide it into
75 archived chunks which are then, like snapshots, ready to be processed,
76 see the tracing session rotation feature in man:lttng-concepts(7). Trace
77 chunk archives do :not: overlap like snapshots can.
81 Before you take a snapshot on a system with a high event throughput, the
82 LTTng project recommends that you first run the man:lttng-stop(1)
83 command. Otherwise, the snapshot could contain ``holes'', the result of
84 the tracers overwriting unconsumed trace packets during the snapshot
87 After LTTng writes the snapshot trace data, you can restart the tracing
88 session with the man:lttng-start(1) command.
95 When you take a tracing session snapshot with the `record` action, LTTng
96 writes the snapshot trace files to:
98 If you specify the 'URL' non-option argument or the option:--ctrl-url and option:--data-url options::
99 The output defined by the 'URL' non-option argument or by the
100 arguments of the options.
102 See man:lttng-create(1) for the format of 'URL'.
105 The snapshot output of the selected tracing session.
107 Add a snapshot output to a tracing session with the `add-output` action.
108 As of LTTng{nbsp}{lttng_version}, you may only add one snapshot output
109 to a given tracing session.
111 When you create a snapshot mode tracing session with the
112 nloption:--snapshot option of the man:lttng-create(1) command, and
113 without its nloption:--no-output option, the `create` command
114 automatically adds a snapshot output named `snapshot-1` to the created
118 With its nloption:--output, nloption:--set-url, nloption:--ctrl-url, or nloption:--data-url options::
119 Equivalent to using the `add-output` action with the provided or
120 equivalent URL(s) immediately after creating the tracing session.
123 A subdirectory, under the `$LTTNG_HOME/lttng-traces` (`$LTTNG_HOME`
124 defaults to `$HOME`) directory, of which the name contains the
125 tracing session name and the date/time.
128 Show the current snapshot output of a tracing session with the
129 `list-output` action.
131 Remove the snapshot output of a tracing session with the
134 For both the `record` and `add-output` actions:
136 * Assign a name to a snapshot output with the option:--name='NAME'
139 'NAME' becomes part of the snapshot trace file names which LTTng sends
142 * By default, the snapshot files can be as big as the sum of the sizes
143 of all the sub-buffers of all the channels of the selected tracing
146 Set the maximum total size of all the snapshot trace files LTTng writes
147 with the option:--max-size option.
150 include::common-lttng-cmd-options-head.txt[]
155 option:-s 'SESSION', option:--session='SESSION'::
156 Take a snapshot of the sub-buffers of the tracing session named
157 'SESSION' instead of the current tracing session.
162 See the ``<<output,Snapshot output>>'' section above.
164 option:-C 'URL', option:--ctrl-url='URL'::
165 Set the control path URL to 'URL'.
167 You must also use the option:--data-url option.
169 See man:lttng-create(1) for the format of 'URL'.
171 option:-D 'URL', option:--data-url='URL'::
172 Set the trace data path URL to 'URL'.
174 You must also use the option:--ctrl-url option.
176 See man:lttng-create(1) for the format of 'URL'.
178 option:-m 'SIZE', option:--max-size='SIZE'::
179 Set the maximum total size of all the snapshot trace files LTTng
180 writes when taking a snapshot to 'SIZE' bytes.
182 The `k`{nbsp}(KiB), `M`{nbsp}(MiB), and `G`{nbsp}(GiB) suffixes are
185 option:-n 'NAME', option:--name='NAME'::
186 Assign the name 'NAME' to the snapshot output.
189 include::common-lttng-cmd-help-options.txt[]
192 include::common-lttng-cmd-after-options.txt[]
198 .Take a snapshot of the current tracing session, sending the trace files to its snapshot output.
202 $ lttng snapshot record
206 .Take a snapshot of a specific tracing session, giving it a custom name.
208 See the option:--session and option:--name options.
212 $ lttng snapshot record --session=my-session --name=SNAP
216 .Take a snapshot of the current tracing session, sending the trace files to a custom location.
218 See the ``Output directory'' section of man:lttng-relayd(8) to
219 understand where the relay daemon to connect to (`3.96.87.215`) writes
224 $ lttng snapshot record net://3.96.87.215
228 .Replace the snapshot output of a specific tracing session with a local file system path.
230 See the option:--session option.
234 $ lttng snapshot del-output --session=monk 1
235 $ lttng snapshot add-output --session=monk \
236 file:///path/to/snapshots
240 .Take a snapshot of the current tracing session, making sure its size is not over 4{nbsp}MiB.
242 See the option:--max-size option.
246 $ lttng snapshot record --max-size=4M
251 include::common-footer.txt[]
258 man:lttng-concepts(7)