1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
lttng-disable-rotation(1)
=========================
:revdate: 14 June 2021
NAME
----
lttng-disable-rotation - Unset an LTTng recording session rotation schedule
SYNOPSIS
--------
[verse]
*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *disable-rotation* [option:--session='SESSION']
(option:--timer | option:--size | option:--timer option:--size)
DESCRIPTION
-----------
The `lttng disable-rotation` command unsets a rotation schedule,
previously set with the man:lttng-enable-rotation(1) command, for:
With the option:--session='SESSION' option::
The recording session named 'SESSION'.
Without the option:--session option::
The current recording session (see man:lttng-concepts(7) to learn
more about the current recording session).
See man:lttng-concepts(7) to learn more about the recording session
rotation and trace chunk concepts.
See the ``<<examples,EXAMPLES>>'' section below for usage examples.
include::common-lttng-cmd-options-head.txt[]
Rotation schedule condition
~~~~~~~~~~~~~~~~~~~~~~~~~~~
option:--size::
Unset the rotation schedule previously set with the nloption:--size
option of the man:lttng-enable-rotation(1) command.
option:--timer::
Unset the rotation schedule previously set with the nloption:--timer
option of the man:lttng-enable-rotation(1) command.
Recording target
~~~~~~~~~~~~~~~~
option:-s 'SESSION', option:--session='SESSION'::
Unset a rotation schedule for the recording session named 'SESSION'
instead of the current recording session.
include::common-lttng-cmd-help-options.txt[]
include::common-lttng-cmd-after-options.txt[]
[[examples]]
EXAMPLES
--------
.Unset the size-based rotation schedule of the current recording session.
====
See the option:--size option.
[role="term"]
----
$ lttng disable-rotation --size
----
====
.Unset the periodic rotation schedule of a specific recording session.
====
See the option:--timer and option:--session options.
[role="term"]
----
$ lttng disable-rotation --session=my-session --timer
----
====
include::common-footer.txt[]
SEE ALSO
--------
man:lttng(1),
man:lttng-enable-rotation(1),
man:lttng-rotate(1),
man:lttng-concepts(7)
|