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