doc/man: update rotation man pages to follow API's terminology
[lttng-tools.git] / doc / man / lttng-enable-rotation.1.txt
1 lttng-enable-rotation(1)
2 ========================
3
4
5 NAME
6 ----
7 lttng-enable-rotation - Set a tracing session's rotation schedule
8
9
10 SYNOPSIS
11 --------
12 [verse]
13 *lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *enable-rotation* (option:--timer='PERIOD' | option:--size='SIZE')
14 [option:--session='SESSION']
15
16
17 DESCRIPTION
18 -----------
19 The `lttng enable-rotation` command sets a rotation schedule for the
20 current tracing session, or for the tracing session named 'SESSION' if
21 provided. See man:lttng-rotate(1) for more information about the
22 concepts of a tracing session _rotation_ and a _trace chunk_.
23
24 With the option:--timer option, the rotation schedule is set so that an
25 automatic rotation occurs at least every 'PERIOD' (microseconds without
26 a unit suffix).
27
28 With the option:--size option, the rotation schedule is set
29 so that an automatic rotation occurs every time the total size of the
30 flushed part of the current trace chunk is at least 'SIZE' (bytes
31 without a unit suffix).
32
33 With both the option:--timer and option:--size options, LTTng checks the
34 schedule condition periodically using the monitor timers of the tracing
35 session's channels. This means that, with the option:--timer option, the
36 automatic rotation can occur when the elapsed time since the last
37 automatic rotation is greater than 'PERIOD', and with the option:--size
38 option, the automatic rotation can occur when the size of the flushed
39 part of the current trace chunk is greater than 'SIZE'. See the
40 nloption:--monitor-timer option in man:lttng-enable-channel(1) for more
41 information about the monitor timer.
42
43 The naming convention of a trace chunk archive which an automatic
44 rotation creates is the same as with the immediate rotation command,
45 man:lttng-rotate(1).
46
47 For a given tracing session, you cannot set multiple rotation schedules
48 with the option:--timer or the option:--size option.
49
50 You can unset a rotation schedule with the man:lttng-disable-rotation(1)
51 command.
52
53 See <<limitations,LIMITATIONS>> for important limitations regarding
54 this command.
55
56
57 include::common-cmd-options-head.txt[]
58
59
60 Rotation schedule condition
61 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
62 One of:
63
64 option:--size='SIZE'::
65 Set a rotation schedule so that an automatic rotation occurs every
66 time the total size of the flushed part of the current trace chunk
67 is at least 'SIZE' bytes. The `k` (kiB), `M` (MiB), and `G` (GiB)
68 suffixes are supported.
69
70 option:--timer='PERIOD'::
71 Set a rotation schedule so that an automatic rotation occurs at
72 least every 'PERIOD' microseconds. The `ms` (milliseconds), `s`
73 (seconds), `m` (minutes), and `h` (hours) suffixes are supported.
74
75
76 Target
77 ~~~~~~
78 option:-s 'SESSION', option:--session='SESSION'::
79 Set a rotation schedule for the tracing session named 'SESSION'
80 instead of the current tracing session.
81
82
83 include::common-cmd-help-options.txt[]
84
85
86 [[limitations]]
87 LIMITATIONS
88 -----------
89 The `lttng enable-rotation` command only works when:
90
91 * The tracing session is created in normal mode or in network streaming
92 mode (see man:lttng-create(1)).
93
94 * No channel was created with a configured trace file count or size
95 limit (see the nloption:--tracefile-size and
96 nloption:--tracefile-count options in man:lttng-enable-channel(1)).
97
98 For a given tracing session, LTTng only performs an automatic rotation
99 when no other rotation is currently happening.
100
101
102 include::common-cmd-footer.txt[]
103
104
105 SEE ALSO
106 --------
107 man:lttng-rotate(1),
108 man:lttng-disable-rotation(1),
109 man:lttng(1)
This page took 0.032452 seconds and 5 git commands to generate.