2 * Copyright (C) 2014 - David Goulet <dgoulet@efficios.com>
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include <lttng/handle.h>
28 * Instrumentation type of tracing event.
30 enum lttng_event_type
{
32 LTTNG_EVENT_TRACEPOINT
= 0,
33 LTTNG_EVENT_PROBE
= 1,
34 LTTNG_EVENT_FUNCTION
= 2,
35 LTTNG_EVENT_FUNCTION_ENTRY
= 3,
37 LTTNG_EVENT_SYSCALL
= 5,
41 * Loglevel information.
43 enum lttng_loglevel_type
{
44 LTTNG_EVENT_LOGLEVEL_ALL
= 0,
45 LTTNG_EVENT_LOGLEVEL_RANGE
= 1,
46 LTTNG_EVENT_LOGLEVEL_SINGLE
= 2,
50 * Available loglevels.
53 LTTNG_LOGLEVEL_EMERG
= 0,
54 LTTNG_LOGLEVEL_ALERT
= 1,
55 LTTNG_LOGLEVEL_CRIT
= 2,
56 LTTNG_LOGLEVEL_ERR
= 3,
57 LTTNG_LOGLEVEL_WARNING
= 4,
58 LTTNG_LOGLEVEL_NOTICE
= 5,
59 LTTNG_LOGLEVEL_INFO
= 6,
60 LTTNG_LOGLEVEL_DEBUG_SYSTEM
= 7,
61 LTTNG_LOGLEVEL_DEBUG_PROGRAM
= 8,
62 LTTNG_LOGLEVEL_DEBUG_PROCESS
= 9,
63 LTTNG_LOGLEVEL_DEBUG_MODULE
= 10,
64 LTTNG_LOGLEVEL_DEBUG_UNIT
= 11,
65 LTTNG_LOGLEVEL_DEBUG_FUNCTION
= 12,
66 LTTNG_LOGLEVEL_DEBUG_LINE
= 13,
67 LTTNG_LOGLEVEL_DEBUG
= 14,
71 * Available loglevels for the JUL domain. Those are an exact map from the
72 * class java.util.logging.Level.
74 enum lttng_loglevel_jul
{
75 LTTNG_LOGLEVEL_JUL_OFF
= INT32_MAX
,
76 LTTNG_LOGLEVEL_JUL_SEVERE
= 1000,
77 LTTNG_LOGLEVEL_JUL_WARNING
= 900,
78 LTTNG_LOGLEVEL_JUL_INFO
= 800,
79 LTTNG_LOGLEVEL_JUL_CONFIG
= 700,
80 LTTNG_LOGLEVEL_JUL_FINE
= 500,
81 LTTNG_LOGLEVEL_JUL_FINER
= 400,
82 LTTNG_LOGLEVEL_JUL_FINEST
= 300,
83 LTTNG_LOGLEVEL_JUL_ALL
= INT32_MIN
,
89 enum lttng_event_output
{
90 LTTNG_EVENT_SPLICE
= 0,
94 /* Event context possible type */
95 enum lttng_event_context_type
{
96 LTTNG_EVENT_CONTEXT_PID
= 0,
97 LTTNG_EVENT_CONTEXT_PERF_COUNTER
= 1, /* Backward compat. */
98 LTTNG_EVENT_CONTEXT_PROCNAME
= 2,
99 LTTNG_EVENT_CONTEXT_PRIO
= 3,
100 LTTNG_EVENT_CONTEXT_NICE
= 4,
101 LTTNG_EVENT_CONTEXT_VPID
= 5,
102 LTTNG_EVENT_CONTEXT_TID
= 6,
103 LTTNG_EVENT_CONTEXT_VTID
= 7,
104 LTTNG_EVENT_CONTEXT_PPID
= 8,
105 LTTNG_EVENT_CONTEXT_VPPID
= 9,
106 LTTNG_EVENT_CONTEXT_PTHREAD_ID
= 10,
107 LTTNG_EVENT_CONTEXT_HOSTNAME
= 11,
108 LTTNG_EVENT_CONTEXT_IP
= 12,
109 LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER
= 13,
110 LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
= 14,
113 enum lttng_event_field_type
{
114 LTTNG_EVENT_FIELD_OTHER
= 0,
115 LTTNG_EVENT_FIELD_INTEGER
= 1,
116 LTTNG_EVENT_FIELD_ENUM
= 2,
117 LTTNG_EVENT_FIELD_FLOAT
= 3,
118 LTTNG_EVENT_FIELD_STRING
= 4,
122 * Perf counter attributes
124 * The structures should be initialized to zero before use.
126 #define LTTNG_PERF_EVENT_PADDING1 16
127 struct lttng_event_perf_counter_ctx
{
130 char name
[LTTNG_SYMBOL_NAME_LEN
];
132 char padding
[LTTNG_PERF_EVENT_PADDING1
];
136 * Event/channel context
138 * The structures should be initialized to zero before use.
140 #define LTTNG_EVENT_CONTEXT_PADDING1 16
141 #define LTTNG_EVENT_CONTEXT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
142 struct lttng_event_context
{
143 enum lttng_event_context_type ctx
;
144 char padding
[LTTNG_EVENT_CONTEXT_PADDING1
];
147 struct lttng_event_perf_counter_ctx perf_counter
;
148 char padding
[LTTNG_EVENT_CONTEXT_PADDING2
];
155 * Either addr is used or symbol_name and offset.
157 * The structures should be initialized to zero before use.
159 #define LTTNG_EVENT_PROBE_PADDING1 16
160 struct lttng_event_probe_attr
{
164 char symbol_name
[LTTNG_SYMBOL_NAME_LEN
];
166 char padding
[LTTNG_EVENT_PROBE_PADDING1
];
172 * The structures should be initialized to zero before use.
174 #define LTTNG_EVENT_FUNCTION_PADDING1 16
175 struct lttng_event_function_attr
{
176 char symbol_name
[LTTNG_SYMBOL_NAME_LEN
];
178 char padding
[LTTNG_EVENT_FUNCTION_PADDING1
];
182 * Generic lttng event
184 * The structures should be initialized to zero before use.
186 #define LTTNG_EVENT_PADDING1 14
187 #define LTTNG_EVENT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
189 enum lttng_event_type type
;
190 char name
[LTTNG_SYMBOL_NAME_LEN
];
192 enum lttng_loglevel_type loglevel_type
;
195 int32_t enabled
; /* Does not apply: -1 */
197 unsigned char filter
; /* filter enabled ? */
198 unsigned char exclusion
; /* exclusions added ? */
200 char padding
[LTTNG_EVENT_PADDING1
];
202 /* Per event type configuration */
204 struct lttng_event_probe_attr probe
;
205 struct lttng_event_function_attr ftrace
;
207 char padding
[LTTNG_EVENT_PADDING2
];
211 #define LTTNG_EVENT_FIELD_PADDING LTTNG_SYMBOL_NAME_LEN + 32
212 struct lttng_event_field
{
213 char field_name
[LTTNG_SYMBOL_NAME_LEN
];
214 enum lttng_event_field_type type
;
215 char padding
[LTTNG_EVENT_FIELD_PADDING
];
216 struct lttng_event event
;
221 * List the event(s) of a session channel.
223 * Both handle and channel_name CAN NOT be NULL.
225 * Return the size (number of entries) of the "lttng_event" array. Caller must
226 * free events. On error a negative LTTng error code is returned.
228 extern int lttng_list_events(struct lttng_handle
*handle
,
229 const char *channel_name
, struct lttng_event
**events
);
232 * List the available tracepoints of a specific lttng domain.
234 * The handle CAN NOT be NULL.
236 * Return the size (number of entries) of the "lttng_event" array. Caller must
237 * free events. On error a negative LTTng error code is returned.
239 extern int lttng_list_tracepoints(struct lttng_handle
*handle
,
240 struct lttng_event
**events
);
243 * List the available tracepoints fields of a specific lttng domain.
245 * The handle CAN NOT be NULL.
247 * Return the size (number of entries) of the "lttng_event_field" array.
248 * Caller must free fields. On error a negative LTTng error code is
251 extern int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
252 struct lttng_event_field
**fields
);
255 * Add context to event(s) for a specific channel (or for all).
257 * If the channel_name is NULL and they are no channel for the domain, the
258 * default channel is created (channel0). The context is then added on ALL
259 * channels since no name was specified.
261 * The event_name is ignored since adding a context to an event is not possible
264 * Return 0 on success else a negative LTTng error code.
266 extern int lttng_add_context(struct lttng_handle
*handle
,
267 struct lttng_event_context
*ctx
, const char *event_name
,
268 const char *channel_name
);
271 * Create or enable an event (or events) for a channel.
273 * If the event you are trying to enable does not exist, it will be created,
274 * else it is enabled. If channel_name is NULL, the default channel is used
277 * The handle and ev params can not be NULL.
279 * Return 0 on success else a negative LTTng error code.
281 extern int lttng_enable_event(struct lttng_handle
*handle
,
282 struct lttng_event
*ev
, const char *channel_name
);
285 * Create or enable an event with a specific filter.
287 * If the event you are trying to enable does not exist, it will be created,
288 * else it is enabled.
289 * If ev is NULL, all events are enabled with that filter.
290 * If channel_name is NULL, the default channel is used (channel0) and created
292 * If filter_expression is NULL, an event without associated filter is
295 * Return 0 on success else a negative LTTng error code.
297 extern int lttng_enable_event_with_filter(struct lttng_handle
*handle
,
298 struct lttng_event
*event
, const char *channel_name
,
299 const char *filter_expression
);
302 * Create or enable an event with a filter and/or exclusions.
304 * If the event you are trying to enable does not exist, it will be created,
305 * else it is enabled.
306 * If ev is NULL, all events are enabled with the filter and exclusion options.
307 * If channel_name is NULL, the default channel is used (channel0) and created
309 * If filter_expression is NULL, an event without associated filter is
311 * If exclusion count is zero, the event will be created without exclusions.
313 * Return 0 on success else a negative LTTng error code.
315 extern int lttng_enable_event_with_exclusions(struct lttng_handle
*handle
,
316 struct lttng_event
*event
, const char *channel_name
,
317 const char *filter_expression
,
318 int exclusion_count
, char **exclusion_names
);
321 * Disable event(s) of a channel and domain.
323 * If name is NULL, all events are disabled.
324 * If channel_name is NULL, the default channel is used (channel0).
326 * Return 0 on success else a negative LTTng error code.
328 extern int lttng_disable_event(struct lttng_handle
*handle
,
329 const char *name
, const char *channel_name
);
335 #endif /* LTTNG_EVENT_H */