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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
lttng-destroy(1)
================
:revdate: 1 April 2025
NAME
----
lttng-destroy - Destroy one or more LTTng recording sessions
SYNOPSIS
--------
[verse]
*lttng* ['linkgenoptions:(GENERAL OPTIONS)'] *destroy* [option:--no-wait]
[option:--all | option:--glob='PATTERN' | 'SESSION']
DESCRIPTION
-----------
The `lttng destroy` command destroys:
With the 'SESSION' argument::
The recording session named 'SESSION'.
With the option:--glob='PATTERN' option::
The recording sessions of which the globbing pattern
'PATTERN' matches the name.
With the option:--all option::
*All* the recording sessions of the connected session daemon for
your Unix user, or for all users if your Unix user is `root`, as
listed in the output of `lttng list` (see man:lttng-list(1)).
+
See the ``Session daemon connection'' section of man:lttng(1) to learn
how a user application connects to a session daemon.
Otherwise::
The current recording session.
+
In that case, the current recording session becomes nonexistent.
+
See man:lttng-concepts(7) to learn more about
the current recording session.
See man:lttng-concepts(7) to learn more about recording sessions.
``Destroying'' a recording session means freeing the resources which the
LTTng daemons and tracers acquired for it, also making sure to flush all
the recorded trace data to either the local file system or the connected
LTTng relay daemon (see man:lttng-relayd(8)), depending on the recording
session mode.
The `destroy` command stops any recording activity within the selected
recording session(s). By default, the command runs an implicit
man:lttng-stop(1) command to ensure that the trace data of the recording
session(s) is valid before it exits. Make the command exit immediately
with the option:--no-wait option. In this case, however, the traces(s)
might not be valid when the command exits, and there's no way to know
when it/they become valid.
If, for a recording session{nbsp}__RS__ to destroy with the `destroy`
command, the following statements are true:
* You don't specify the option:--no-wait option.
* LTTng archived the current trace chunk (see man:lttng-concepts(7))
of{nbsp}__RS__ at least once during its lifetime.
Then all the subdirectories of the output directory of{nbsp}__RS__
(local or remote) are considered trace chunk archives once the `destroy`
command exits. In other words, it's safe to read them, modify them, move
them, or remove then.
See the ``<<examples,EXAMPLES>>'' section below for usage examples.
include::common-lttng-cmd-options-head.txt[]
option:-a, option:--all::
Destroy all the recording sessions of your Unix user, or of all
users if your Unix user is `root`, as listed in the output of
man:lttng-list(1).
option:-g 'PATTERN', option:--glob='PATTERN'::
Destroy the recording sessions of which the
globbing pattern 'PATTERN' matches the name.
+
In 'PATTERN', the `*` character means ``match anything''. To match
a literal `*` character, use :escwc:.
option:-n, option:--no-wait::
Do :not: ensure that the trace data of the recording session(s) to
destroy is valid before exiting.
include::common-lttng-cmd-help-options.txt[]
include::common-lttng-cmd-after-options.txt[]
[[examples]]
EXAMPLES
--------
.Destroy the current recording session.
====
[role="term"]
----
$ lttng destroy
----
====
.Destroy the current recording session without waiting for completion.
====
See the option:--no-wait option.
[role="term"]
----
$ lttng destroy --no-wait
----
====
.Destroy a specific recording session.
====
[role="term"]
----
$ lttng destroy my-session
----
====
.Destroy all the recording sessions.
====
See the option:--all option.
[role="term"]
----
$ lttng destroy --all
----
====
.Destroy all the recording sessions of which the name contains with `meow`.
====
See the option:--glob option.
[role="term"]
----
$ lttng destroy --glob='*meow*'
----
====
include::common-footer.txt[]
SEE ALSO
--------
man:lttng(1),
man:lttng-create(1),
man:lttng-list(1),
man:lttng-concepts(7)
|