doc/man: follow man-pages(7) for section names/order and for "SEE ALSO"
[lttng-tools.git] / doc / man / lttng-enable-channel.1.txt
CommitLineData
b4867b3b
PP
1lttng-enable-channel(1)
2=======================
26f0c779 3:revdate: 3 May 2021
b4867b3b
PP
4
5
6NAME
7----
8lttng-enable-channel - Create or enable LTTng channels
9
10
11SYNOPSIS
12--------
13Create a Linux kernel channel:
14
15[verse]
ce19b9ed 16*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-channel* option:--kernel
26f0c779 17 [option:--discard | option:--overwrite] [option:--output=(**mmap** | **splice**)]
b4867b3b
PP
18 [option:--subbuf-size='SIZE'] [option:--num-subbuf='COUNT']
19 [option:--switch-timer='PERIODUS'] [option:--read-timer='PERIODUS']
26f0c779
PP
20 [option:--monitor-timer='PERIODUS'] [option:--buffers-global]
21 [option:--tracefile-size='SIZE' [option:--tracefile-count='COUNT']]
b4867b3b
PP
22 [option:--session='SESSION'] 'CHANNEL'
23
24Create a user space channel:
25
26[verse]
ce19b9ed 27*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-channel* option:--userspace
26f0c779
PP
28 [option:--overwrite | [option:--discard] option:--blocking-timeout='TIMEOUTUS']
29 [option:--output=**mmap**] [option:--buffers-uid | option:--buffers-pid]
b4867b3b
PP
30 [option:--subbuf-size='SIZE'] [option:--num-subbuf='COUNT']
31 [option:--switch-timer='PERIODUS'] [option:--read-timer='PERIODUS']
7197e9ec 32 [option:--monitor-timer='PERIODUS']
26f0c779 33 [option:--tracefile-size='SIZE' [option:--tracefile-count='COUNT']]
b4867b3b
PP
34 [option:--session='SESSION'] 'CHANNEL'
35
26f0c779 36Enable channel(s):
b4867b3b
PP
37
38[verse]
ce19b9ed 39*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-channel* (option:--userspace | option:--kernel)
b4867b3b
PP
40 [option:--session='SESSION'] 'CHANNEL'[,'CHANNEL']...
41
42
43DESCRIPTION
44-----------
26f0c779 45The `lttng enable-channel` command does one of:
b4867b3b 46
26f0c779 47* Create a channel named 'CHANNEL'.
b4867b3b 48
26f0c779
PP
49* Enable one or more disabled channels named 'CHANNEL'
50 (non-option argument, comma-separated).
b4867b3b 51
26f0c779 52See man:lttng-concepts(7) to learn more about channels.
b4867b3b 53
26f0c779 54The channel(s) to create or enable belong to:
b4867b3b 55
26f0c779
PP
56With the option:--session='SESSION' option::
57 The tracing session named 'SESSION'.
b4867b3b 58
26f0c779
PP
59Without the option:--session option::
60 The current tracing session (see man:lttng-concepts(7) to learn more
61 about the current tracing session).
b4867b3b 62
26f0c779
PP
63NOTE: The man:lttng-enable-event(1) command can automatically create a
64default channel when no channel exists for the provided tracing domain.
b4867b3b 65
26f0c779
PP
66List the channels of a given tracing session with the
67man:lttng-list(1) and man:lttng-status(1) commands.
b4867b3b 68
26f0c779
PP
69Disable an enabled channel with the man:lttng-disable-channel(1)
70command.
b4867b3b 71
26f0c779
PP
72[IMPORTANT]
73====
74As of LTTng{nbsp}{lttng_version}, you may :not: perform the following
75operations with the `enable-channel` command:
b4867b3b 76
26f0c779 77* Change an attribute of an existing channel.
b4867b3b 78
26f0c779
PP
79* Enable a disabled channel once its tracing session has been active
80 (started; see man:lttng-start(1)) at least once.
b4867b3b 81
26f0c779
PP
82* Create a channel once its tracing session has been active at least
83 once.
b4867b3b 84
26f0c779
PP
85* Create a user space channel with a given buffering scheme
86 (option:--buffers-uid or option:--buffers-pid options) and create a
87 second user space channel with a different buffering scheme in the
88 same tracing session.
89====
b4867b3b 90
b4867b3b 91
26f0c779 92include::common-cmd-options-head.txt[]
b4867b3b 93
b4867b3b 94
26f0c779
PP
95Tracing domain
96~~~~~~~~~~~~~~
97One of:
b4867b3b 98
26f0c779
PP
99option:-k, option:--kernel::
100 Create or enable channels in the Linux kernel domain.
b4867b3b 101
26f0c779
PP
102option:-u, option:--userspace::
103 Create or enable channels in the user space domain.
980bb5fd 104
b4867b3b 105
26f0c779
PP
106Recording target
107~~~~~~~~~~~~~~~~
108option:-s 'SESSION', option:--session='SESSION'::
109 Create or enable channels in the tracing session named 'SESSION'
110 instead of the current tracing session.
b4867b3b
PP
111
112
26f0c779
PP
113Buffering scheme
114~~~~~~~~~~~~~~~~
b4867b3b
PP
115One of:
116
26f0c779
PP
117option:--buffers-global::
118 Allocate a single set of ring buffers for the whole system.
119+
120Only available with the option:--kernel option.
121+
122As of LTTng{nbsp}{lttng_version}, this is the default buffering scheme
123for the Linux kernel tracing domain, but this may change in the future.
b4867b3b 124
26f0c779
PP
125option:--buffers-pid::
126 Allocate one set of ring buffers (one per CPU) for each instrumented
127 process of:
128+
129--
130If you connect to the root session daemon::
131 All Unix users.
132+
133See the ``Session daemon connection'' section of man:lttng(1) to learn
134how a user application connects to a session daemon.
b4867b3b 135
26f0c779
PP
136Otherwise::
137 Your Unix user.
138--
139+
140Only available with the option:--userspace option.
b4867b3b 141
26f0c779
PP
142option:--buffers-uid::
143 Allocate one set of ring buffers (one per CPU) shared by all the
144 instrumented processes of:
145+
146--
147If you connect to the root session daemon::
148 Each Unix user.
149+
150See the ``Session daemon connection'' section of man:lttng(1) to learn
151how a user application connects to a session daemon.
152
153Otherwise::
154 Your Unix user.
155--
156+
157Only available with the option:--userspace option.
158+
159As of LTTng{nbsp}{lttng_version}, this is the default buffering scheme
160for the user space tracing domain, but this may change in the future.
b4867b3b
PP
161
162
26f0c779
PP
163Event record loss mode
164~~~~~~~~~~~~~~~~~~~~~~
7197e9ec 165option:--blocking-timeout='TIMEOUTUS'::
26f0c779
PP
166 Set the channel's blocking timeout value to __TIMEOUTUS__{nbsp}µs
167 for instrumented applications executed with a set
168 `LTTNG_UST_ALLOW_BLOCKING` environment variable.
169+
170'TIMEOUTUS' is one of:
7197e9ec
PP
171+
172--
26f0c779 173`0` (default)::
7197e9ec
PP
174 Do not block (non-blocking mode).
175
176`inf`::
26f0c779
PP
177 Block forever until a sub-buffer is available to write the event
178 record.
7197e9ec 179
26f0c779
PP
180__N__, a positive value::
181 Wait for at most __N__{nbsp}µs when trying to write to a sub-buffer.
182 After __N__{nbsp}µs, discard the event record.
7197e9ec
PP
183--
184+
26f0c779
PP
185This option is only available with both the option:--userspace and
186option:--discard options.
7197e9ec 187
b4867b3b
PP
188One of:
189
190option:--discard::
26f0c779
PP
191 Discard event records when there's no available sub-buffer.
192+
193As of LTTng{nbsp}{lttng_version}, this is the default event record loss
194mode, but this may change in the future.
b4867b3b
PP
195
196option:--overwrite::
26f0c779
PP
197 Overwrite the whole sub-buffer containing the oldest event records
198 when there's no available sub-buffer (flight recorder mode).
b4867b3b
PP
199
200
201Sub-buffers
202~~~~~~~~~~~
203option:--num-subbuf='COUNT'::
26f0c779
PP
204 Use 'COUNT' sub-buffers per ring buffer.
205+
206The effective value is 'COUNT' rounded up to the next power of two.
b4867b3b
PP
207+
208Default values:
209+
26f0c779
PP
210option:--userspace and option:--buffers-uid options:::
211 +{default_ust_uid_channel_subbuf_num}+
212option:--userspace and option:--buffers-pid options:::
213 +{default_ust_pid_channel_subbuf_num}+
214option:--kernel and option:--buffers-global options:::
215 +{default_kernel_channel_subbuf_num}+
216`metadata` channel:::
217 +{default_metadata_subbuf_num}+
b4867b3b 218
55d7bb02
PP
219option:--output='TYPE'::
220 Set channel's output type to 'TYPE'.
221+
26f0c779
PP
222'TYPE' is one of:
223+
224--
225`mmap`:::
226 Share ring buffers between the tracer and the consumer daemon with
227 the man:mmap(2) system call.
228
229`splice`:::
230 Share ring buffers between the tracer and the consumer daemon
231 with the man:splice(2) system call.
232+
233Only available with the option:--kernel option.
234--
55d7bb02
PP
235+
236Default values:
237+
26f0c779
PP
238option:--userspace and option:--buffers-uid options:::
239 `mmap`
240option:--userspace and option:--buffers-pid options:::
241 `mmap`
242option:--kernel and option:--buffers-global options:::
243 `splice`
244`metadata` channel:::
245 `mmap`
55d7bb02 246
b4867b3b 247option:--subbuf-size='SIZE'::
26f0c779
PP
248 Set the size of each sub-buffer to 'SIZE' bytes.
249+
250The effective value is 'SIZE' rounded up to the next power of two.
251+
252The `k`{nbsp}(KiB), `M`{nbsp}(MiB), and `G`{nbsp}(GiB) suffixes are
253supported.
b4867b3b
PP
254+
255The minimum sub-buffer size, for each tracer, is the maximum value
26f0c779
PP
256between the default below and the system page size (see man:getconf(1)
257with the `PAGE_SIZE` variable).
b4867b3b
PP
258+
259Default values:
260+
26f0c779
PP
261option:--userspace and option:--buffers-uid options:::
262 +{default_ust_uid_channel_subbuf_size}+
263option:--userspace and option:--buffers-pid options:::
264 +{default_ust_pid_channel_subbuf_size}+
265option:--kernel and option:--buffers-global options:::
266 +{default_kernel_channel_subbuf_size}+
267`metadata` channel:::
268 +{default_metadata_subbuf_size}+
b4867b3b
PP
269
270
271Trace files
272~~~~~~~~~~~
273option:--tracefile-count='COUNT'::
26f0c779
PP
274 Limit the number of trace files which LTTng writes for this channel
275 to 'COUNT'.
b4867b3b 276+
26f0c779 277'COUNT' set to `0` means ``unlimited''.
b4867b3b 278+
26f0c779
PP
279Default: +{default_channel_tracefile_count}+.
280+
281You must also use the option:--tracefile-size option with this option.
b4867b3b
PP
282
283option:--tracefile-size='SIZE'::
26f0c779
PP
284 Set the maximum size of each trace file which LTTng writes for
285 this channel to __SIZE__{nbsp}bytes.
286+
287'SIZE' set to `0` means ``unlimited''.
288+
289Default: +{default_channel_tracefile_size}+.
b4867b3b 290+
26f0c779
PP
291NOTE: Data streams which LTTng writes for a channel configured with this
292option may inaccurately report discarded event records as of
293CTF{nbsp}1.8.
b4867b3b
PP
294
295
296Timers
297~~~~~~
26f0c779
PP
298option:--monitor-timer='PERIODUS'::
299 Set the period of the monitor timer of the channel to
300 __PERIODUS__{nbsp}µs.
301+
302Set 'PERIODUS' to `0` to disable the monitor timer.
961df0d0
PP
303+
304Default values:
305+
26f0c779
PP
306option:--userspace and option:--buffers-uid options:::
307 +{default_ust_uid_channel_monitor_timer}+
308option:--userspace and option:--buffers-pid options:::
309 +{default_ust_pid_channel_monitor_timer}+
310option:--kernel and option:--buffers-global options:::
311 +{default_kernel_channel_monitor_timer}+
312
313option:--read-timer='PERIODUS'::
314 Set the period of the read timer of the channel to
315 __PERIODUS__{nbsp}µs.
316+
317Set 'PERIODUS' to `0` to disable the read timer.
b4867b3b
PP
318+
319Default values:
320+
26f0c779
PP
321option:--userspace and option:--buffers-uid options:::
322 +{default_ust_uid_channel_read_timer}+
323option:--userspace and option:--buffers-pid options:::
324 +{default_ust_pid_channel_read_timer}+
325option:--kernel and option:--buffers-global options:::
326 +{default_kernel_channel_read_timer}+
327`metadata` channel:::
328 +{default_metadata_read_timer}+
b4867b3b
PP
329
330option:--switch-timer='PERIODUS'::
26f0c779
PP
331 Set the period of the switch timer of the channel to
332 __PERIODUS__{nbsp}µs.
333+
334Set 'PERIODUS' to `0` to disable the switch timer.
c93eadad
PP
335+
336Default values:
337+
26f0c779
PP
338option:--userspace and option:--buffers-uid options:::
339 +{default_ust_uid_channel_switch_timer}+
340option:--userspace and option:--buffers-pid options:::
341 +{default_ust_pid_channel_switch_timer}+
342option:--kernel and option:--buffers-global options:::
343 +{default_kernel_channel_switch_timer}+
344`metadata` channel:::
345 +{default_metadata_switch_timer}+
b4867b3b
PP
346
347
348include::common-cmd-help-options.txt[]
349
350
351include::common-cmd-footer.txt[]
352
353
354SEE ALSO
355--------
491d1539 356man:lttng(1),
26f0c779 357man:lttng-disable-channel(1),
af1c4164
PP
358man:lttng-list(1),
359man:lttng-concepts(7)
This page took 0.04726 seconds and 4 git commands to generate.