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