Rename "tracing session" -> "recording session"
[lttng-tools.git] / doc / man / lttng-load.1.txt
CommitLineData
44f5039e
PP
1lttng-load(1)
2=============
e9711845 3:revdate: 14 June 2021
44f5039e
PP
4
5
6NAME
7----
e9711845 8lttng-load - Load LTTng recording session configurations
44f5039e
PP
9
10
11SYNOPSIS
12--------
13[verse]
fe559816 14*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *load* [option:--force] [option:--input-path='PATH']
26f0c779 15 [option:--override-url='URL'] [option:--all | 'SESSION' [option:--override-name='NAME']]
44f5039e
PP
16
17
18DESCRIPTION
19-----------
20The `lttng load` command loads the configurations of one or more
e9711845 21recording sessions from files.
44f5039e 22
e9711845 23See man:lttng-concepts(7) to learn more about recording sessions.
26f0c779
PP
24
25Use the `load` command in conjunction with the man:lttng-save(1) command
e9711845
PP
26to save and restore the complete configurations of recording sessions. A
27recording session configuration includes the enabled channels and
28recording event rules, the context fields to be recorded, the recording
484b2a0c 29activity, and more.
44f5039e 30
e9711845
PP
31Once LTTng loads one or more recording session configurations, they
32appear exactly as they were saved from the user's point of view.
44f5039e 33
26f0c779 34LTTng searches the following directories, non-recursively, in this order
e9711845 35for recording session configuration files:
7a0f38c7
PP
36
37. `$LTTNG_HOME/.lttng/sessions` (`$LTTNG_HOME` defaults to `$HOME`)
38. +{system_sessions_dir}+
39
26f0c779
PP
40Override the input path with the option:--input-path='PATH' option. With
41this option, LTTng does :not: search the default directories above.
42'PATH' can be the path of one of:
43
44A directory::
45 With the 'SESSION' argument:::
e9711845 46 LTTng searches for the recording session configuration named
26f0c779
PP
47 'SESSION' in all the files of the directory 'PATH' and loads it
48 if found.
44f5039e 49
26f0c779 50 Without the 'SESSION' argument:::
e9711845
PP
51 The option:--all option is implicit: LTTng loads all the
52 recording session configurations found in all the files in the
53 directory 'PATH'.
9014e3a8 54
26f0c779
PP
55A file::
56 With the 'SESSION' argument:::
e9711845 57 LTTng searches for the recording session configuration named
26f0c779 58 'SESSION' in the file 'PATH' and loads it if found.
9014e3a8 59
26f0c779 60 Without the 'SESSION' argument:::
e9711845
PP
61 The option:--all option is implicit: LTTng loads all the
62 recording session configurations found in the file 'PATH'.
9014e3a8 63
e9711845 64Override the output URL of the loaded recording session configurations
26f0c779 65with the option:--override-url option.
9014e3a8 66
e9711845 67With the 'SESSION' argument, override the name of the loaded recording
26f0c779 68session configuration with the option:--override-name option.
e1f481f6 69
e9711845 70By default, the `load` command does :not: overwrite existing recording
26f0c779 71sessions: the command fails. Allow the `load` command to overwrite
e9711845 72existing recording sessions with the option:--force option.
44f5039e 73
da39b67c 74See the ``<<examples,EXAMPLES>>'' section below for usage examples.
0009a5f9 75
44f5039e 76
f5511eea 77include::common-lttng-cmd-options-head.txt[]
44f5039e
PP
78
79
80option:-a, option:--all::
e9711845 81 Load all the recording session configurations (default).
44f5039e
PP
82
83option:-f, option:--force::
e9711845 84 Overwrite existing recording sessions when loading.
44f5039e 85
59b19c3c 86option:-i 'PATH', option:--input-path='PATH'::
e9711845
PP
87 Load recording session configurations from 'PATH', either a
88 directory or a file, instead of loading them from the default search
7a0f38c7 89 directories.
44f5039e 90
54c28cda 91option:--override-name='NAME'::
e9711845 92 Override the name of the loaded recording session configuration,
62482ec6 93 'SESSION', with 'NAME'.
62482ec6
PP
94
95option:--override-url='URL'::
e9711845
PP
96 Override the output URL of the loaded recording session
97 configurations with 'URL'.
62482ec6
PP
98+
99This is the equivalent of the nloption:--set-url option of
100man:lttng-create(1). The validity of the URL override depends on the
e9711845
PP
101type of recording session configurations to load. This option applies to
102_all_ the loaded recording session configurations.
62482ec6 103
44f5039e 104
f5511eea 105include::common-lttng-cmd-help-options.txt[]
44f5039e
PP
106
107
f5511eea
PP
108include::common-lttng-cmd-after-options.txt[]
109
110
0009a5f9
PP
111[[examples]]
112EXAMPLES
113--------
e9711845 114.Load all the recording session configurations from the default search directories.
0009a5f9
PP
115====
116[role="term"]
117----
118$ lttng load
119----
120====
121
e9711845 122.Load all the recording session configurations from a specific directory.
0009a5f9
PP
123====
124See the option:--input-path option.
125
126[role="term"]
127----
128$ lttng load --input-path=/path/to/sessions
129----
130====
131
e9711845 132.Load a specific recording session configuration from the default search directories.
0009a5f9
PP
133====
134[role="term"]
135----
136$ lttng load my-session
137----
138====
139
e9711845 140.Allow LTTng to overwrite existing recording sessions when loading.
0009a5f9
PP
141====
142See the option:--force option.
143
144[role="term"]
145----
146$ lttng load --force
147----
148====
149
e9711845 150.Load a specific recording session configuration from a specific file, overriding its name.
0009a5f9
PP
151====
152See the option:--input-path and option:--override-name options.
153
154[role="term"]
155----
156$ lttng load my-session --input-path=/path/to/sessions.lttng \
157 --override-name=new-test
158----
159====
160
161
f5511eea 162include::common-footer.txt[]
44f5039e
PP
163
164
165SEE ALSO
166--------
26f0c779 167man:lttng(1),
af1c4164
PP
168man:lttng-save(1),
169man:lttng-concepts(7)
This page took 0.039185 seconds and 4 git commands to generate.