Fix: rename config internal header to abi
[lttng-tools.git] / src / common / config / config-session-abi.h
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
21 const char * const config_element_channel;
22 const char * const config_element_channels;
23 const char * const config_element_domain;
24 const char * const config_element_domains;
25 const char * const config_element_event;
26 const char * const config_element_events;
27 const char * const config_element_context;
28 const char * const config_element_contexts;
29 const char * const config_element_attributes;
30 const char * const config_element_exclusion;
31 const char * const config_element_exclusions;
32 const char * const config_element_function_attributes;
33 const char * const config_element_probe_attributes;
34 const char * const config_element_symbol_name;
35 const char * const config_element_address;
36 const char * const config_element_offset;
37 const char * const config_element_name;
38 const char * const config_element_enabled;
39 const char * const config_element_overwrite_mode;
40 const char * const config_element_subbuf_size;
41 const char * const config_element_num_subbuf;
42 const char * const config_element_switch_timer_interval;
43 const char * const config_element_read_timer_interval;
44 const char * const config_element_output;
45 const char * const config_element_output_type;
46 const char * const config_element_tracefile_size;
47 const char * const config_element_tracefile_count;
48 const char * const config_element_live_timer_interval;
49 const char * const config_element_type;
50 const char * const config_element_buffer_type;
51 const char * const config_element_session;
52 const char * const config_element_sessions;
53 const char * const config_element_perf;
54 const char * const config_element_config;
55 const char * const config_element_started;
56 const char * const config_element_snapshot_mode;
57 const char * const config_element_loglevel;
58 const char * const config_element_loglevel_type;
59 const char * const config_element_filter;
60 const char * const config_element_snapshot_outputs;
61 const char * const config_element_consumer_output;
62 const char * const config_element_destination;
63 const char * const config_element_path;
64 const char * const config_element_net_output;
65 const char * const config_element_control_uri;
66 const char * const config_element_data_uri;
67 const char * const config_element_max_size;
68
69 const char * const config_domain_type_kernel;
70 const char * const config_domain_type_ust;
71 const char * const config_domain_type_jul;
72
73 const char * const config_buffer_type_per_pid;
74 const char * const config_buffer_type_per_uid;
75 const char * const config_buffer_type_global;
76
77 const char * const config_overwrite_mode_discard;
78 const char * const config_overwrite_mode_overwrite;
79
80 const char * const config_output_type_splice;
81 const char * const config_output_type_mmap;
82
83 const char * const config_loglevel_type_all;
84 const char * const config_loglevel_type_range;
85 const char * const config_loglevel_type_single;
86
87 const char * const config_event_type_all;
88 const char * const config_event_type_tracepoint;
89 const char * const config_event_type_probe;
90 const char * const config_event_type_function;
91 const char * const config_event_type_function_entry;
92 const char * const config_event_type_noop;
93 const char * const config_event_type_syscall;
94 const char * const config_event_type_kprobe;
95 const char * const config_event_type_kretprobe;
96
97 const char * const config_event_context_pid;
98 const char * const config_event_context_procname;
99 const char * const config_event_context_prio;
100 const char * const config_event_context_nice;
101 const char * const config_event_context_vpid;
102 const char * const config_event_context_tid;
103 const char * const config_event_context_vtid;
104 const char * const config_event_context_ppid;
105 const char * const config_event_context_vppid;
106 const char * const config_event_context_pthread_id;
107 const char * const config_event_context_hostname;
108 const char * const config_event_context_ip;
109
110 #endif /* CONFIG_SESSION_INTERNAL_H */
This page took 0.057275 seconds and 5 git commands to generate.