X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fmi-lttng.h;h=37136a8dbed4417ee0088baa9ea3e7cedeb68b30;hp=df7a68a02cdade0f8755c4c0f623945968cbd261;hb=66ea93b10c703e1b3dda1e17109eed9138e4ece2;hpb=dbd512ea8aa5349849aeeccda6130aa9e28cf23c diff --git a/src/common/mi-lttng.h b/src/common/mi-lttng.h index df7a68a02..37136a8db 100644 --- a/src/common/mi-lttng.h +++ b/src/common/mi-lttng.h @@ -192,9 +192,15 @@ LTTNG_HIDDEN const char * const mi_lttng_element_session_name; /* String related to rotate command */ LTTNG_HIDDEN const char * const mi_lttng_element_rotation; -LTTNG_HIDDEN const char * const mi_lttng_element_rotations; LTTNG_HIDDEN const char * const mi_lttng_element_rotate_status; LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedules; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_periodic; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_periodic_time_us; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_size_threshold; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_size_threshold_bytes; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_result; +LTTNG_HIDDEN const char * const mi_lttng_element_rotation_schedule_results; /* String related to add-context command */ LTTNG_HIDDEN extern const char * const mi_lttng_element_context_symbol; @@ -806,4 +812,44 @@ int mi_lttng_snapshot_record(struct mi_writer *writer, const char *current_session_name, const char *url, const char *cmdline_ctrl_url, const char *cmdline_data_url); +/* + * Machine interface representation of a session rotation schedule. + * + * The machine interface serializes the provided schedule as one of the choices + * from 'rotation_schedule_type'. + * + * writer: An instance of a machine interface writer. + * + * schedule: An lttng rotation schedule descriptor object. + * + * Returns zero if the element's value could be written. + * Negative values indicate an error. + */ +int mi_lttng_rotation_schedule(struct mi_writer *writer, + const struct lttng_rotation_schedule *schedule); + +/* + * Machine interface of a session rotation schedule result. + * This is an element that is part of the output of the enable-rotation and + * disable-rotation commands. + * + * The machine interface provides the following information: + * - schedule: the session rotation schedule descriptor. + * - success: whether the sub-command succeeded. + * + * writer: An instance of a machine interface writer. + * + * session_name: The session to which the command applies. + * + * schedule: An lttng rotation schedule descriptor object. + * + * success: Whether the sub-command suceeded. + * + * Returns zero if the element's value could be written. + * Negative values indicate an error. + */ +int mi_lttng_rotation_schedule_result(struct mi_writer *writer, + const struct lttng_rotation_schedule *schedule, + bool success); + #endif /* _MI_LTTNG_H */