Introduce "--blocking-timeout" channel parameter
[lttng-tools.git] / src / common / config / config-session-abi.h
CommitLineData
fb198a11
JG
1/*
2 * Copyright (C) 2014 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program 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 General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#ifndef CONFIG_SESSION_INTERNAL_H
19#define CONFIG_SESSION_INTERNAL_H
20
4965f956
JG
21extern const char * const config_element_channel;
22extern const char * const config_element_channels;
23extern const char * const config_element_domain;
24extern const char * const config_element_domains;
25extern const char * const config_element_event;
26extern const char * const config_element_events;
27extern const char * const config_element_context;
28extern const char * const config_element_contexts;
29extern const char * const config_element_attributes;
30extern const char * const config_element_exclusion;
31extern const char * const config_element_exclusions;
32extern const char * const config_element_function_attributes;
33extern const char * const config_element_probe_attributes;
34extern const char * const config_element_symbol_name;
35extern const char * const config_element_address;
36extern const char * const config_element_offset;
37extern const char * const config_element_name;
38extern const char * const config_element_enabled;
39extern const char * const config_element_overwrite_mode;
40extern const char * const config_element_subbuf_size;
41extern const char * const config_element_num_subbuf;
42extern const char * const config_element_switch_timer_interval;
43extern const char * const config_element_read_timer_interval;
cf0bcb51 44extern const char * const config_element_monitor_timer_interval;
491d1539 45extern const char * const config_element_blocking_timeout;
4965f956
JG
46extern const char * const config_element_output;
47extern const char * const config_element_output_type;
48extern const char * const config_element_tracefile_size;
49extern const char * const config_element_tracefile_count;
50extern const char * const config_element_live_timer_interval;
fb83fe64
JD
51extern const char * const config_element_discarded_events;
52extern const char * const config_element_lost_packets;
4965f956
JG
53extern const char * const config_element_type;
54extern const char * const config_element_buffer_type;
55extern const char * const config_element_session;
56extern const char * const config_element_sessions;
045fc617
JG
57extern const char * const config_element_context_perf;
58extern const char * const config_element_context_app;
59extern const char * const config_element_context_app_provider_name;
60extern const char * const config_element_context_app_ctx_name;
4965f956
JG
61extern const char * const config_element_config;
62extern const char * const config_element_started;
63extern const char * const config_element_snapshot_mode;
64extern const char * const config_element_loglevel;
65extern const char * const config_element_loglevel_type;
66extern const char * const config_element_filter;
7b4aa11d 67extern const char * const config_element_filter_expression;
4965f956
JG
68extern const char * const config_element_snapshot_outputs;
69extern const char * const config_element_consumer_output;
70extern const char * const config_element_destination;
71extern const char * const config_element_path;
72extern const char * const config_element_net_output;
73extern const char * const config_element_control_uri;
74extern const char * const config_element_data_uri;
75extern const char * const config_element_max_size;
76extern const char * const config_element_pid;
77extern const char * const config_element_pids;
9e7c9f56 78extern const char * const config_element_shared_memory_path;
ebbf5ab7
JR
79extern const char * const config_element_pid_tracker;
80extern const char * const config_element_trackers;
847a5916
JR
81extern const char * const config_element_targets;
82extern const char * const config_element_target_pid;
fb198a11 83
4965f956
JG
84extern const char * const config_domain_type_kernel;
85extern const char * const config_domain_type_ust;
86extern const char * const config_domain_type_jul;
87extern const char * const config_domain_type_log4j;
b789735e 88extern const char * const config_domain_type_python;
fb198a11 89
4965f956
JG
90extern const char * const config_buffer_type_per_pid;
91extern const char * const config_buffer_type_per_uid;
92extern const char * const config_buffer_type_global;
fb198a11 93
4965f956
JG
94extern const char * const config_overwrite_mode_discard;
95extern const char * const config_overwrite_mode_overwrite;
fb198a11 96
4965f956
JG
97extern const char * const config_output_type_splice;
98extern const char * const config_output_type_mmap;
fb198a11 99
4965f956
JG
100extern const char * const config_loglevel_type_all;
101extern const char * const config_loglevel_type_range;
102extern const char * const config_loglevel_type_single;
fb198a11 103
4965f956
JG
104extern const char * const config_event_type_all;
105extern const char * const config_event_type_tracepoint;
106extern const char * const config_event_type_probe;
107extern const char * const config_event_type_function;
108extern const char * const config_event_type_function_entry;
109extern const char * const config_event_type_noop;
110extern const char * const config_event_type_syscall;
111extern const char * const config_event_type_kprobe;
112extern const char * const config_event_type_kretprobe;
fb198a11 113
4965f956
JG
114extern const char * const config_event_context_pid;
115extern const char * const config_event_context_procname;
116extern const char * const config_event_context_prio;
117extern const char * const config_event_context_nice;
118extern const char * const config_event_context_vpid;
119extern const char * const config_event_context_tid;
120extern const char * const config_event_context_vtid;
121extern const char * const config_event_context_ppid;
122extern const char * const config_event_context_vppid;
123extern const char * const config_event_context_pthread_id;
124extern const char * const config_event_context_hostname;
125extern const char * const config_event_context_ip;
126extern const char * const config_event_context_perf_thread_counter;
045fc617 127extern const char * const config_event_context_app;
1ae5e83e
JD
128extern const char * const config_event_context_interruptible;
129extern const char * const config_event_context_preemptible;
130extern const char * const config_event_context_need_reschedule;
131extern const char * const config_event_context_migratable;
fb198a11
JG
132
133#endif /* CONFIG_SESSION_INTERNAL_H */
This page took 0.035836 seconds and 4 git commands to generate.