Size-based rotation
[lttng-tools.git] / include / lttng / rotation.h
CommitLineData
db66e574
JD
1/*
2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
d68c9a04 3 * Copyright (C) 2018 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
db66e574
JD
4 *
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
8 *
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#ifndef LTTNG_ROTATION_H
20#define LTTNG_ROTATION_H
21
22#include <stdint.h>
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28/*
d68c9a04 29 * Return codes for lttng_rotation_handle_get_state()
db66e574 30 */
d68c9a04 31enum lttng_rotation_state {
db66e574 32 /*
d68c9a04 33 * Rotation is ongoing, but has not been completed yet.
db66e574 34 */
d68c9a04 35 LTTNG_ROTATION_STATE_ONGOING = 0,
db66e574 36 /*
d68c9a04
JD
37 * Rotation has been completed and the resulting chunk
38 * can now safely be read.
db66e574 39 */
d68c9a04 40 LTTNG_ROTATION_STATE_COMPLETED = 1,
db66e574 41 /*
d68c9a04
JD
42 * The rotation has expired.
43 *
44 * The information associated with a given rotation is eventually
45 * purged by the session daemon. In such a case, the attributes of
46 * the rotation, such as its path, may no longer be available.
47 *
48 * Note that this state does not guarantee the the rotation was
49 * completed successfully.
db66e574 50 */
d68c9a04 51 LTTNG_ROTATION_STATE_EXPIRED = 2,
db66e574 52 /*
d68c9a04 53 * The rotation could not be completed due to an error.
db66e574 54 */
d68c9a04
JD
55 LTTNG_ROTATION_STATE_ERROR = 3,
56};
57
58enum lttng_rotation_status {
59 LTTNG_ROTATION_STATUS_OK = 0,
60 /* Information not available. */
61 LTTNG_ROTATION_STATUS_UNAVAILABLE = 1,
62 /* Generic error. */
63 LTTNG_ROTATION_STATUS_ERROR = -1,
64 /* Invalid parameters provided. */
65 LTTNG_ROTATION_STATUS_INVALID = -2,
db66e574
JD
66};
67
d68c9a04
JD
68/*
69 * Input parameter to the lttng_rotate_session command.
70 *
71 * An immediate rotation is performed as soon as possible by the tracers.
d68c9a04
JD
72 */
73struct lttng_rotation_immediate_attr;
74
259c2674
JD
75/*
76 * Input parameter to the lttng_rotate_schedule command.
77 */
78struct lttng_rotation_schedule_attr;
79
d68c9a04
JD
80/*
81 * Handle used to represent a specific rotation.
d68c9a04
JD
82 */
83struct lttng_rotation_handle;
84
85/*
86 * Return a newly allocated immediate session rotation descriptor object or NULL
87 * on error.
88 */
89extern struct lttng_rotation_immediate_attr *
90lttng_rotation_immediate_attr_create(void);
91
259c2674
JD
92/*
93 * Return a newly allocated scheduled rotate session descriptor object or NULL
94 * on error.
95 */
96extern struct lttng_rotation_schedule_attr *
97lttng_rotation_schedule_attr_create(void);
98
d68c9a04
JD
99/*
100 * Destroy a given immediate session rotation descriptor object.
101 */
102extern void lttng_rotation_immediate_attr_destroy(
103 struct lttng_rotation_immediate_attr *attr);
104
259c2674
JD
105/*
106 * Destroy a given scheduled rotate session descriptor object.
107 */
108extern void lttng_rotation_schedule_attr_destroy(
109 struct lttng_rotation_schedule_attr *attr);
110
d68c9a04
JD
111/*
112 * Set the name of the session to rotate immediately.
113 *
114 * The session_name parameter is copied to the immediate session rotation
115 * attributes.
116 */
117extern enum lttng_rotation_status lttng_rotation_immediate_attr_set_session_name(
118 struct lttng_rotation_immediate_attr *attr,
119 const char *session_name);
120
259c2674
JD
121/*
122 * Set the name of the session to rotate automatically.
123 *
124 * The session_name parameter is copied to the immediate session rotation
125 * attributes.
126 */
127extern enum lttng_rotation_status lttng_rotation_schedule_attr_set_session_name(
128 struct lttng_rotation_schedule_attr *attr,
129 const char *session_name);
130
131/*
132 * Set the timer to periodically rotate the session (µs, -1ULL to disable).
133 */
134extern enum lttng_rotation_status lttng_rotation_schedule_attr_set_timer_period(
135 struct lttng_rotation_schedule_attr *attr, uint64_t timer);
136
90936dcf
JD
137/*
138 * Set the size to rotate the session (bytes, -1ULL to disable).
139 */
140void lttng_rotation_schedule_attr_set_size(
141 struct lttng_rotation_schedule_attr *attr, uint64_t size);
142
259c2674
JD
143/*
144 * lttng rotate session handle functions.
145 */
146
d68c9a04
JD
147/*
148 * Get the current state of the rotation referenced by the handle.
149 *
150 * This will issue a request to the session daemon on every call. Hence,
151 * the result of this call may change over time.
152 */
153extern enum lttng_rotation_status lttng_rotation_handle_get_state(
154 struct lttng_rotation_handle *rotation_handle,
155 enum lttng_rotation_state *rotation_state);
156
157/*
158 * Get the location of the rotation's resulting archive.
159 *
160 * The rotation must be completed in order for this call to succeed.
161 * The path returned is owned by the rotation handle.
162 *
163 * Note that path will not be set in case of error, or if the session
164 * rotation has expired.
165 *
166 * FIXME: Return an lttng_location object instead of a path.
167 */
168extern enum lttng_rotation_status lttng_rotation_handle_get_completed_archive_location(
169 struct lttng_rotation_handle *rotation_handle,
170 const char **path);
171
172/*
173 * Destroy an lttng_rotate_session handle.
174 */
175extern void lttng_rotation_handle_destroy(
176 struct lttng_rotation_handle *rotation_handle);
177
178/*
179 * Rotate the output folder of the session
180 *
181 * On success, handle is allocated and can be used to monitor the progress
182 * of the rotation with lttng_rotation_get_state(). The handle must be freed
183 * by the caller with lttng_rotation_handle_destroy().
184 *
185 * Return 0 if the rotate action was successfully launched or a negative
186 * LTTng error code on error.
187 */
188extern int lttng_rotate_session(struct lttng_rotation_immediate_attr *attr,
189 struct lttng_rotation_handle **rotation_handle);
190
259c2674
JD
191/*
192 * Configure a session to rotate periodically or based on the size written.
193 */
194extern int lttng_rotation_set_schedule(
195 struct lttng_rotation_schedule_attr *attr);
196
329f3443
JD
197/*
198 * Ask the sessiond for the value of the rotate timer (in micro-seconds) of the
199 * session.
200 *
201 * On success, return 0 and set the value or rotate_timer, on error return a
202 * negative value.
203 */
204extern int lttng_rotation_schedule_get_timer_period(const char *session_name,
205 uint64_t *rotate_timer);
206
207/*
208 * Ask the sessiond for the value of the rotate size (in micro-seconds) of the
209 * session.
210 *
211 * On success, return 0 and set the value or rotate_size, on error return
212 * a negative value.
213 */
214extern int lttng_rotation_schedule_get_size(const char *session_name,
215 uint64_t *rotate_size);
216
db66e574
JD
217#ifdef __cplusplus
218}
219#endif
220
221#endif /* LTTNG_ROTATION_H */
This page took 0.033754 seconds and 5 git commands to generate.