Fix: cleanup high_throughput_limits test
[lttng-tools.git] / include / lttng / lttng.h
CommitLineData
826d496d 1/*
b7384347
DG
2 * lttng.h
3 *
4 * Linux Trace Toolkit Control Library Header File
5 *
826d496d 6 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
fac6795d 7 *
1e46a50f 8 * This library is free software; you can redistribute it and/or modify it
d14d33bf
AM
9 * under the terms of the GNU Lesser General Public License, version 2.1 only,
10 * as published by the Free Software Foundation.
82a3637f 11 *
1e46a50f
TD
12 * This library is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15 * for more details.
82a3637f 16 *
1e46a50f
TD
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
fac6795d
DG
20 */
21
73db5be4
DG
22#ifndef LTTNG_H
23#define LTTNG_H
fac6795d 24
57167058 25#include <limits.h>
1e307fab
DG
26#include <stdint.h>
27#include <sys/types.h>
57167058 28
03b1319d
DG
29/* Error codes that can be returned by API calls */
30#include <lttng/lttng-error.h>
31
5168918c
DG
32#ifdef __cplusplus
33extern "C" {
34#endif
35
a9e87764
DG
36#ifndef LTTNG_PACKED
37#define LTTNG_PACKED __attribute__((__packed__))
38#endif
39
b7384347 40/*
e6ddca71 41 * Event symbol length. Copied from LTTng kernel ABI.
1657e9bb 42 */
8d326ab9 43#define LTTNG_SYMBOL_NAME_LEN 256
f3ed775e 44
e6ddca71
DG
45/*
46 * Every lttng_event_* structure both apply to kernel event and user-space
47 * event.
e6ddca71
DG
48 */
49
7d29a247 50/*
1e46a50f 51 * Domain types: the different possible tracers.
7d29a247
DG
52 */
53enum lttng_domain_type {
0d0c377a
DG
54 LTTNG_DOMAIN_KERNEL = 1,
55 LTTNG_DOMAIN_UST = 2,
d78d6610
DG
56
57 /*
58 * For now, the domains below are not implemented. However, we keep them
59 * here in order to retain their enum values for future development. Note
60 * that it is on the roadmap to implement them.
61 *
0d0c377a
DG
62 LTTNG_DOMAIN_UST_EXEC_NAME = 3,
63 LTTNG_DOMAIN_UST_PID = 4,
64 LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN = 5,
d78d6610 65 */
7d29a247
DG
66};
67
7d29a247
DG
68/*
69 * Instrumentation type of tracing event.
70 */
f3ed775e 71enum lttng_event_type {
7a3d1328
MD
72 LTTNG_EVENT_ALL = -1,
73 LTTNG_EVENT_TRACEPOINT = 0,
74 LTTNG_EVENT_PROBE = 1,
75 LTTNG_EVENT_FUNCTION = 2,
76 LTTNG_EVENT_FUNCTION_ENTRY = 3,
77 LTTNG_EVENT_NOOP = 4,
78 LTTNG_EVENT_SYSCALL = 5,
0cda4f28
MD
79};
80
81/*
82 * Loglevel information.
83 */
84enum lttng_loglevel_type {
8005f29a
MD
85 LTTNG_EVENT_LOGLEVEL_ALL = 0,
86 LTTNG_EVENT_LOGLEVEL_RANGE = 1,
87 LTTNG_EVENT_LOGLEVEL_SINGLE = 2,
1657e9bb
DG
88};
89
46839cc2
MD
90/*
91 * Available loglevels.
92 */
93enum lttng_loglevel {
00e2e675
DG
94 LTTNG_LOGLEVEL_EMERG = 0,
95 LTTNG_LOGLEVEL_ALERT = 1,
96 LTTNG_LOGLEVEL_CRIT = 2,
97 LTTNG_LOGLEVEL_ERR = 3,
98 LTTNG_LOGLEVEL_WARNING = 4,
99 LTTNG_LOGLEVEL_NOTICE = 5,
100 LTTNG_LOGLEVEL_INFO = 6,
101 LTTNG_LOGLEVEL_DEBUG_SYSTEM = 7,
102 LTTNG_LOGLEVEL_DEBUG_PROGRAM = 8,
103 LTTNG_LOGLEVEL_DEBUG_PROCESS = 9,
104 LTTNG_LOGLEVEL_DEBUG_MODULE = 10,
105 LTTNG_LOGLEVEL_DEBUG_UNIT = 11,
106 LTTNG_LOGLEVEL_DEBUG_FUNCTION = 12,
107 LTTNG_LOGLEVEL_DEBUG_LINE = 13,
108 LTTNG_LOGLEVEL_DEBUG = 14,
46839cc2
MD
109};
110
e6ddca71
DG
111/*
112 * LTTng consumer mode
113 */
114enum lttng_event_output {
d78d6610
DG
115 LTTNG_EVENT_SPLICE = 0,
116 LTTNG_EVENT_MMAP = 1,
e6ddca71
DG
117};
118
7d29a247
DG
119/* Event context possible type */
120enum lttng_event_context_type {
d78d6610
DG
121 LTTNG_EVENT_CONTEXT_PID = 0,
122 LTTNG_EVENT_CONTEXT_PERF_COUNTER = 1,
9197c5c4 123 LTTNG_EVENT_CONTEXT_PROCNAME = 2,
d78d6610
DG
124 LTTNG_EVENT_CONTEXT_PRIO = 3,
125 LTTNG_EVENT_CONTEXT_NICE = 4,
126 LTTNG_EVENT_CONTEXT_VPID = 5,
127 LTTNG_EVENT_CONTEXT_TID = 6,
128 LTTNG_EVENT_CONTEXT_VTID = 7,
129 LTTNG_EVENT_CONTEXT_PPID = 8,
130 LTTNG_EVENT_CONTEXT_VPPID = 9,
9197c5c4 131 LTTNG_EVENT_CONTEXT_PTHREAD_ID = 10,
54773d68 132 LTTNG_EVENT_CONTEXT_HOSTNAME = 11,
d65106b1
DG
133};
134
d0254c7c 135enum lttng_calibrate_type {
d78d6610 136 LTTNG_CALIBRATE_FUNCTION = 0,
d0254c7c
MD
137};
138
44a5e5eb
DG
139/* Health component for the health check function. */
140enum lttng_health_component {
141 LTTNG_HEALTH_CMD,
139ac872 142 LTTNG_HEALTH_APP_MANAGE,
44a5e5eb
DG
143 LTTNG_HEALTH_APP_REG,
144 LTTNG_HEALTH_KERNEL,
145 LTTNG_HEALTH_CONSUMER,
146 LTTNG_HEALTH_ALL,
147};
148
ece640c8
RB
149/*
150 * The structures should be initialized to zero before use.
151 */
8d326ab9
DG
152#define LTTNG_DOMAIN_PADDING1 16
153#define LTTNG_DOMAIN_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
9f19cc17
DG
154struct lttng_domain {
155 enum lttng_domain_type type;
8d326ab9
DG
156 char padding[LTTNG_DOMAIN_PADDING1];
157
9f19cc17
DG
158 union {
159 pid_t pid;
160 char exec_name[NAME_MAX];
8d326ab9 161 char padding[LTTNG_DOMAIN_PADDING2];
9f19cc17 162 } attr;
a9e87764 163} LTTNG_PACKED;
9f19cc17 164
ece640c8
RB
165/*
166 * Perf counter attributes
167 *
168 * The structures should be initialized to zero before use.
169 */
8d326ab9 170#define LTTNG_PERF_EVENT_PADDING1 16
7d29a247 171struct lttng_event_perf_counter_ctx {
d65106b1
DG
172 uint32_t type;
173 uint64_t config;
174 char name[LTTNG_SYMBOL_NAME_LEN];
8d326ab9
DG
175
176 char padding[LTTNG_PERF_EVENT_PADDING1];
a9e87764 177} LTTNG_PACKED;
d65106b1 178
ece640c8
RB
179/*
180 * Event/channel context
181 *
182 * The structures should be initialized to zero before use.
183 */
8d326ab9
DG
184#define LTTNG_EVENT_CONTEXT_PADDING1 16
185#define LTTNG_EVENT_CONTEXT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
7d29a247
DG
186struct lttng_event_context {
187 enum lttng_event_context_type ctx;
8d326ab9
DG
188 char padding[LTTNG_EVENT_CONTEXT_PADDING1];
189
d65106b1 190 union {
7d29a247 191 struct lttng_event_perf_counter_ctx perf_counter;
8d326ab9 192 char padding[LTTNG_EVENT_CONTEXT_PADDING2];
d65106b1 193 } u;
a9e87764 194} LTTNG_PACKED;
d65106b1 195
b7384347 196/*
7d29a247
DG
197 * Event probe.
198 *
199 * Either addr is used or symbol_name and offset.
ece640c8
RB
200 *
201 * The structures should be initialized to zero before use.
57167058 202 */
8d326ab9 203#define LTTNG_EVENT_PROBE_PADDING1 16
7d29a247 204struct lttng_event_probe_attr {
f3ed775e
DG
205 uint64_t addr;
206
207 uint64_t offset;
208 char symbol_name[LTTNG_SYMBOL_NAME_LEN];
8d326ab9
DG
209
210 char padding[LTTNG_EVENT_PROBE_PADDING1];
a9e87764 211} LTTNG_PACKED;
57167058 212
b7384347 213/*
f3ed775e 214 * Function tracer
ece640c8
RB
215 *
216 * The structures should be initialized to zero before use.
f3ed775e 217 */
8d326ab9 218#define LTTNG_EVENT_FUNCTION_PADDING1 16
f3ed775e
DG
219struct lttng_event_function_attr {
220 char symbol_name[LTTNG_SYMBOL_NAME_LEN];
8d326ab9
DG
221
222 char padding[LTTNG_EVENT_FUNCTION_PADDING1];
a9e87764 223} LTTNG_PACKED;
f3ed775e
DG
224
225/*
226 * Generic lttng event
ece640c8
RB
227 *
228 * The structures should be initialized to zero before use.
f3ed775e 229 */
fceb65df 230#define LTTNG_EVENT_PADDING1 15
8d326ab9 231#define LTTNG_EVENT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
f3ed775e 232struct lttng_event {
0cda4f28 233 enum lttng_event_type type;
f3ed775e 234 char name[LTTNG_SYMBOL_NAME_LEN];
0cda4f28
MD
235
236 enum lttng_loglevel_type loglevel_type;
8005f29a 237 int loglevel;
0cda4f28 238
35dc4d62 239 int32_t enabled; /* Does not apply: -1 */
b551a063 240 pid_t pid;
fceb65df 241 unsigned char filter; /* filter enabled ? */
8d326ab9
DG
242
243 char padding[LTTNG_EVENT_PADDING1];
244
f3ed775e
DG
245 /* Per event type configuration */
246 union {
7d29a247 247 struct lttng_event_probe_attr probe;
f3ed775e 248 struct lttng_event_function_attr ftrace;
8d326ab9
DG
249
250 char padding[LTTNG_EVENT_PADDING2];
f3ed775e 251 } attr;
a9e87764 252} LTTNG_PACKED;
f3ed775e 253
f37d259d
MD
254enum lttng_event_field_type {
255 LTTNG_EVENT_FIELD_OTHER = 0,
256 LTTNG_EVENT_FIELD_INTEGER = 1,
257 LTTNG_EVENT_FIELD_ENUM = 2,
258 LTTNG_EVENT_FIELD_FLOAT = 3,
259 LTTNG_EVENT_FIELD_STRING = 4,
260};
261
262#define LTTNG_EVENT_FIELD_PADDING LTTNG_SYMBOL_NAME_LEN + 32
263struct lttng_event_field {
264 char field_name[LTTNG_SYMBOL_NAME_LEN];
265 enum lttng_event_field_type type;
266 char padding[LTTNG_EVENT_FIELD_PADDING];
267 struct lttng_event event;
590b9e3c 268 int nowrite;
a9e87764 269} LTTNG_PACKED;
f37d259d 270
e6ddca71
DG
271/*
272 * Tracer channel attributes. For both kernel and user-space.
ece640c8
RB
273 *
274 * The structures should be initialized to zero before use.
e6ddca71 275 */
8d326ab9 276#define LTTNG_CHANNEL_ATTR_PADDING1 LTTNG_SYMBOL_NAME_LEN + 32
f3ed775e 277struct lttng_channel_attr {
8ce37aa5
DG
278 int overwrite; /* 1: overwrite, 0: discard */
279 uint64_t subbuf_size; /* bytes */
280 uint64_t num_subbuf; /* power of 2 */
281 unsigned int switch_timer_interval; /* usec */
282 unsigned int read_timer_interval; /* usec */
f05b5f07 283 enum lttng_event_output output; /* splice, mmap */
8d326ab9
DG
284
285 char padding[LTTNG_CHANNEL_ATTR_PADDING1];
a9e87764 286} LTTNG_PACKED;
f3ed775e
DG
287
288/*
e6ddca71 289 * Channel information structure. For both kernel and user-space.
ece640c8
RB
290 *
291 * The structures should be initialized to zero before use.
1657e9bb 292 */
8d326ab9 293#define LTTNG_CHANNEL_PADDING1 16
e6ddca71 294struct lttng_channel {
045e5491 295 char name[LTTNG_SYMBOL_NAME_LEN];
9f19cc17 296 uint32_t enabled;
e6ddca71 297 struct lttng_channel_attr attr;
8d326ab9
DG
298
299 char padding[LTTNG_CHANNEL_PADDING1];
a9e87764 300} LTTNG_PACKED;
f3ed775e 301
8d326ab9 302#define LTTNG_CALIBRATE_PADDING1 16
d0254c7c
MD
303struct lttng_calibrate {
304 enum lttng_calibrate_type type;
8d326ab9
DG
305
306 char padding[LTTNG_CALIBRATE_PADDING1];
a9e87764 307} LTTNG_PACKED;
d0254c7c 308
e6ddca71
DG
309/*
310 * Basic session information.
311 *
312 * This is an 'output data' meaning that it only comes *from* the session
313 * daemon *to* the lttng client. It's basically a 'human' representation of
314 * tracing entities (here a session).
ece640c8
RB
315 *
316 * The structures should be initialized to zero before use.
e6ddca71 317 */
8d326ab9 318#define LTTNG_SESSION_PADDING1 16
e6ddca71 319struct lttng_session {
f3ed775e 320 char name[NAME_MAX];
e6ddca71
DG
321 /* The path where traces are written */
322 char path[PATH_MAX];
464dd62d 323 uint32_t enabled; /* enabled/started: 1, disabled/stopped: 0 */
8d326ab9
DG
324
325 char padding[LTTNG_SESSION_PADDING1];
a9e87764 326} LTTNG_PACKED;
1657e9bb 327
cd80958d
DG
328/*
329 * Handle used as a context for commands.
ece640c8
RB
330 *
331 * The structures should be initialized to zero before use.
cd80958d 332 */
8d326ab9 333#define LTTNG_HANDLE_PADDING1 16
cd80958d
DG
334struct lttng_handle {
335 char session_name[NAME_MAX];
336 struct lttng_domain domain;
8d326ab9
DG
337
338 char padding[LTTNG_HANDLE_PADDING1];
a9e87764 339} LTTNG_PACKED;
cd80958d 340
7d29a247
DG
341/*
342 * Public LTTng control API
343 *
1e46a50f 344 * For functions having an lttng domain type as parameter, if a bad value is
7d29a247
DG
345 * given, NO default is applied and an error is returned.
346 *
347 * On success, all functions of the API return 0 or the size of the allocated
1e46a50f 348 * array (in bytes).
7d29a247
DG
349 *
350 * On error, a negative value is returned being a specific lttng-tools error
9a745bc7 351 * code which can be humanly interpreted with lttng_strerror(err).
1e46a50f
TD
352 *
353 * Exceptions to this are noted below.
7d29a247
DG
354 */
355
b7384347 356/*
1e46a50f 357 * Create a handle used as a context for every request made to the library.
cd80958d
DG
358 *
359 * This handle contains the session name and lttng domain on which the command
1e46a50f
TD
360 * will be executed.
361 * The returned pointer will be NULL in case of malloc() error.
cd80958d
DG
362 */
363extern struct lttng_handle *lttng_create_handle(const char *session_name,
364 struct lttng_domain *domain);
365
366/*
41039c06
DG
367 * Destroy an handle.
368 *
369 * It free(3) the data pointer returned by lttng_create_handle(), rendering it
370 * unusable.
b7384347 371 */
cd80958d 372extern void lttng_destroy_handle(struct lttng_handle *handle);
7d29a247
DG
373
374/*
a4b92340
DG
375 * Create a tracing session using a name and an optional URL.
376 *
41039c06
DG
377 * If _url_ is NULL, no consumer is created for the session. The name can't be
378 * NULL here.
00e2e675 379 */
a4b92340 380extern int lttng_create_session(const char *name, const char *url);
00e2e675 381
7d29a247 382/*
1e46a50f 383 * Destroy a tracing session.
7d29a247 384 *
1e46a50f
TD
385 * The session will not be usable anymore, tracing will be stopped for all
386 * registered traces, and the tracing buffers will be flushed.
41039c06
DG
387 *
388 * The name can't be NULL here.
7d29a247 389 */
843f5df9 390extern int lttng_destroy_session(const char *name);
f3ed775e 391
e6ddca71 392/*
1e46a50f 393 * List all the tracing sessions.
7d29a247 394 *
1e46a50f
TD
395 * Return the size (number of entries) of the "lttng_session" array. Caller
396 * must free(3).
e6ddca71 397 */
ca95a216 398extern int lttng_list_sessions(struct lttng_session **sessions);
f3ed775e 399
9f19cc17 400/*
1e46a50f 401 * List the registered domain(s) of a session.
9f19cc17 402 *
1e46a50f
TD
403 * Return the size (number of entries) of the "lttng_domain" array. Caller
404 * must free(3).
9f19cc17 405 */
330be774 406extern int lttng_list_domains(const char *session_name,
9f19cc17
DG
407 struct lttng_domain **domains);
408
409/*
1e46a50f 410 * List the channel(s) of a session.
9f19cc17 411 *
1e46a50f
TD
412 * Return the size (number of entries) of the "lttng_channel" array. Caller
413 * must free(3).
9f19cc17 414 */
cd80958d
DG
415extern int lttng_list_channels(struct lttng_handle *handle,
416 struct lttng_channel **channels);
9f19cc17
DG
417
418/*
1e46a50f 419 * List the event(s) of a session channel.
9f19cc17 420 *
1e46a50f
TD
421 * Return the size (number of entries) of the "lttng_event" array.
422 * Caller must free(3).
9f19cc17 423 */
cd80958d
DG
424extern int lttng_list_events(struct lttng_handle *handle,
425 const char *channel_name, struct lttng_event **events);
9f19cc17
DG
426
427/*
1e46a50f 428 * List the available tracepoints of a specific lttng domain.
9f19cc17 429 *
1e46a50f
TD
430 * Return the size (number of entries) of the "lttng_event" array.
431 * Caller must free(3).
9f19cc17 432 */
cd80958d 433extern int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 434 struct lttng_event **events);
9f19cc17 435
f37d259d
MD
436/*
437 * List the available tracepoints fields of a specific lttng domain.
438 *
439 * Return the size (number of entries) of the "lttng_event_field" array.
440 * Caller must free(3).
441 */
442extern int lttng_list_tracepoint_fields(struct lttng_handle *handle,
443 struct lttng_event_field **fields);
444
7d29a247
DG
445/*
446 * Check if a session daemon is alive.
1e46a50f
TD
447 *
448 * Return 1 if alive or 0 if not. On error returns a negative value.
7d29a247 449 */
947308c4 450extern int lttng_session_daemon_alive(void);
f3ed775e 451
7d29a247 452/*
1e46a50f
TD
453 * Set the tracing group for the *current* flow of execution.
454 *
41039c06
DG
455 * On success, returns 0 else a negative value on error being a lttng error
456 * code found in lttng-error.h
7d29a247 457 */
b7384347 458extern int lttng_set_tracing_group(const char *name);
f3ed775e 459
7d29a247 460/*
1e46a50f 461 * Return a human-readable error message for an lttng-tools error code.
7d29a247
DG
462 *
463 * Parameter MUST be a negative value or else you'll get a generic message.
464 */
9a745bc7 465extern const char *lttng_strerror(int code);
b7384347 466
d9800920 467/*
1e46a50f
TD
468 * This call registers an "outside consumer" for a session and an lttng domain.
469 * No consumer will be spawned and all fds/commands will go through the socket
470 * path given (socket_path).
d9800920 471 *
3bd1e081 472 * NOTE: At the moment, if you use the liblttng-kconsumer, you can only use the
d9800920
DG
473 * command socket. The error socket is not supported yet for roaming consumers.
474 */
475extern int lttng_register_consumer(struct lttng_handle *handle,
476 const char *socket_path);
477
7d29a247 478/*
1e46a50f 479 * Start tracing for *all* registered traces (kernel and user-space).
7d29a247 480 */
6a4f824d 481extern int lttng_start_tracing(const char *session_name);
f3ed775e 482
7d29a247 483/*
1e46a50f 484 * Stop tracing for *all* registered traces (kernel and user-space).
38ee087f
DG
485 *
486 * This call will wait for data availability for each domain of the session so
487 * this can take an abritrary amount of time. However, when returning you have
488 * the guarantee that the data is ready to be read and analyse. Use the
489 * _no_wait call below to avoid this behavior.
41039c06
DG
490 *
491 * The session_name can't be NULL.
7d29a247 492 */
6a4f824d 493extern int lttng_stop_tracing(const char *session_name);
f3ed775e 494
38ee087f
DG
495/*
496 * Behave exactly like lttng_stop_tracing but does not wait for data
497 * availability.
498 */
499extern int lttng_stop_tracing_no_wait(const char *session_name);
500
b7384347 501/*
1e46a50f 502 * Add context to event(s) for a specific channel (or for all).
7d29a247 503 *
41039c06
DG
504 * If channel_name is NULL, a lookup of the event's channel is done. If both
505 * are NULL, the context is applied to all events of all channels.
506 *
507 * Note that whatever event_name value is, a context can not be added to an
508 * event, so we just ignore it for now.
b7384347 509 */
cd80958d 510extern int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
511 struct lttng_event_context *ctx, const char *event_name,
512 const char *channel_name);
f3ed775e 513
7d29a247 514/*
c8f61fc6 515 * Create or enable an event (or events) for a channel.
7d29a247
DG
516 *
517 * If the event you are trying to enable does not exist, it will be created,
518 * else it is enabled.
7d29a247 519 * If channel_name is NULL, the default channel is used (channel0).
41039c06
DG
520 *
521 * The handle and ev params can not be NULL.
7d29a247 522 */
cd80958d
DG
523extern int lttng_enable_event(struct lttng_handle *handle,
524 struct lttng_event *ev, const char *channel_name);
f3ed775e 525
53a80697 526/*
025faf73 527 * Create or enable an event with a specific filter.
53a80697 528 *
025faf73
DG
529 * If the event you are trying to enable does not exist, it will be created,
530 * else it is enabled.
41039c06 531 * If ev is NULL, all events are enabled with that filter.
025faf73
DG
532 * If channel_name is NULL, the default channel is used (channel0) and created
533 * if not found.
52df2401
MD
534 * If filter_expression is NULL, an event without associated filter is
535 * created.
53a80697 536 */
025faf73 537extern int lttng_enable_event_with_filter(struct lttng_handle *handle,
178191b3 538 struct lttng_event *event, const char *channel_name,
53a80697 539 const char *filter_expression);
178191b3 540
7d29a247 541/*
c8f61fc6 542 * Create or enable a channel.
41039c06
DG
543 *
544 * The chan and handle params can not be NULL.
7d29a247 545 */
cd80958d 546extern int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 547 struct lttng_channel *chan);
f3ed775e 548
7d29a247 549/*
c8f61fc6 550 * Disable event(s) of a channel and domain.
7d29a247 551 *
41039c06 552 * If name is NULL, all events are disabled.
7d29a247
DG
553 * If channel_name is NULL, the default channel is used (channel0).
554 */
cd80958d
DG
555extern int lttng_disable_event(struct lttng_handle *handle,
556 const char *name, const char *channel_name);
fac6795d 557
1df4dedd 558/*
c8f61fc6 559 * Disable channel.
7d29a247 560 *
1df4dedd 561 */
cd80958d 562extern int lttng_disable_channel(struct lttng_handle *handle,
38057ed1 563 const char *name);
1df4dedd 564
d0254c7c
MD
565/*
566 * Calibrate LTTng overhead.
41039c06
DG
567 *
568 * The chan and handle params can not be NULL.
d0254c7c 569 */
cd80958d 570extern int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
571 struct lttng_calibrate *calibrate);
572
5edd7e09
DG
573/*
574 * Set the default channel attributes for a specific domain and an allocated
575 * lttng_channel_attr pointer.
1e46a50f 576 *
41039c06 577 * If one or both arguments are NULL, nothing happens.
5edd7e09
DG
578 */
579extern void lttng_channel_set_default_attr(struct lttng_domain *domain,
580 struct lttng_channel_attr *attr);
581
00e2e675 582/*
a4b92340
DG
583 * Set URL for a consumer for a session and domain.
584 *
585 * Both data and control URL must be defined. If both URLs are the same, only
586 * the control URL is used even for network streaming.
00e2e675 587 *
a4b92340
DG
588 * Default port are 5342 and 5343 respectively for control and data which uses
589 * the TCP protocol.
00e2e675 590 */
a4b92340
DG
591extern int lttng_set_consumer_url(struct lttng_handle *handle,
592 const char *control_url, const char *data_url);
00e2e675
DG
593
594/*
595 * Enable the consumer for a session and domain.
596 */
597extern int lttng_enable_consumer(struct lttng_handle *handle);
598
599/*
600 * Disable consumer for a session and domain.
601 */
602extern int lttng_disable_consumer(struct lttng_handle *handle);
603
44a5e5eb
DG
604/*
605 * Check session daemon health for a specific component.
606 *
607 * Return 0 if health is OK or 1 if BAD. A returned value of -1 indicate that
608 * the control library was not able to connect to the session daemon health
609 * socket.
610 *
611 * Any other positive value is an lttcomm error which can be translate with
612 * lttng_strerror().
41039c06
DG
613 *
614 * Please see lttng-health-check(3) man page for more information.
44a5e5eb
DG
615 */
616extern int lttng_health_check(enum lttng_health_component c);
617
806e2684
DG
618/*
619 * For a given session name, this call checks if the data is ready to be read
6d805429
DG
620 * or is still being extracted by the consumer(s) (pending) hence not ready to
621 * be used by any readers.
806e2684 622 *
6d805429
DG
623 * Return 0 if there is _no_ data pending in the buffers thus having a
624 * guarantee that the data can be read safely. Else, return 1 if there is still
625 * traced data is pending. On error, a negative value is returned and readable
626 * by lttng_strerror().
806e2684 627 */
6d805429 628extern int lttng_data_pending(const char *session_name);
806e2684 629
5168918c
DG
630#ifdef __cplusplus
631}
632#endif
633
73db5be4 634#endif /* LTTNG_H */
This page took 0.07576 seconds and 4 git commands to generate.