Contexts for RT debugging
[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 extern const char * const config_element_channel;
22 extern const char * const config_element_channels;
23 extern const char * const config_element_domain;
24 extern const char * const config_element_domains;
25 extern const char * const config_element_event;
26 extern const char * const config_element_events;
27 extern const char * const config_element_context;
28 extern const char * const config_element_contexts;
29 extern const char * const config_element_attributes;
30 extern const char * const config_element_exclusion;
31 extern const char * const config_element_exclusions;
32 extern const char * const config_element_function_attributes;
33 extern const char * const config_element_probe_attributes;
34 extern const char * const config_element_symbol_name;
35 extern const char * const config_element_address;
36 extern const char * const config_element_offset;
37 extern const char * const config_element_name;
38 extern const char * const config_element_enabled;
39 extern const char * const config_element_overwrite_mode;
40 extern const char * const config_element_subbuf_size;
41 extern const char * const config_element_num_subbuf;
42 extern const char * const config_element_switch_timer_interval;
43 extern const char * const config_element_read_timer_interval;
44 extern const char * const config_element_output;
45 extern const char * const config_element_output_type;
46 extern const char * const config_element_tracefile_size;
47 extern const char * const config_element_tracefile_count;
48 extern const char * const config_element_live_timer_interval;
49 extern const char * const config_element_discarded_events;
50 extern const char * const config_element_lost_packets;
51 extern const char * const config_element_type;
52 extern const char * const config_element_buffer_type;
53 extern const char * const config_element_session;
54 extern const char * const config_element_sessions;
55 extern const char * const config_element_context_perf;
56 extern const char * const config_element_context_app;
57 extern const char * const config_element_context_app_provider_name;
58 extern const char * const config_element_context_app_ctx_name;
59 extern const char * const config_element_config;
60 extern const char * const config_element_started;
61 extern const char * const config_element_snapshot_mode;
62 extern const char * const config_element_loglevel;
63 extern const char * const config_element_loglevel_type;
64 extern const char * const config_element_filter;
65 extern const char * const config_element_filter_expression;
66 extern const char * const config_element_snapshot_outputs;
67 extern const char * const config_element_consumer_output;
68 extern const char * const config_element_destination;
69 extern const char * const config_element_path;
70 extern const char * const config_element_net_output;
71 extern const char * const config_element_control_uri;
72 extern const char * const config_element_data_uri;
73 extern const char * const config_element_max_size;
74 extern const char * const config_element_pid;
75 extern const char * const config_element_pids;
76 extern const char * const config_element_shared_memory_path;
77 extern const char * const config_element_pid_tracker;
78 extern const char * const config_element_trackers;
79 extern const char * const config_element_targets;
80 extern const char * const config_element_target_pid;
81
82 extern const char * const config_domain_type_kernel;
83 extern const char * const config_domain_type_ust;
84 extern const char * const config_domain_type_jul;
85 extern const char * const config_domain_type_log4j;
86 extern const char * const config_domain_type_python;
87
88 extern const char * const config_buffer_type_per_pid;
89 extern const char * const config_buffer_type_per_uid;
90 extern const char * const config_buffer_type_global;
91
92 extern const char * const config_overwrite_mode_discard;
93 extern const char * const config_overwrite_mode_overwrite;
94
95 extern const char * const config_output_type_splice;
96 extern const char * const config_output_type_mmap;
97
98 extern const char * const config_loglevel_type_all;
99 extern const char * const config_loglevel_type_range;
100 extern const char * const config_loglevel_type_single;
101
102 extern const char * const config_event_type_all;
103 extern const char * const config_event_type_tracepoint;
104 extern const char * const config_event_type_probe;
105 extern const char * const config_event_type_function;
106 extern const char * const config_event_type_function_entry;
107 extern const char * const config_event_type_noop;
108 extern const char * const config_event_type_syscall;
109 extern const char * const config_event_type_kprobe;
110 extern const char * const config_event_type_kretprobe;
111
112 extern const char * const config_event_context_pid;
113 extern const char * const config_event_context_procname;
114 extern const char * const config_event_context_prio;
115 extern const char * const config_event_context_nice;
116 extern const char * const config_event_context_vpid;
117 extern const char * const config_event_context_tid;
118 extern const char * const config_event_context_vtid;
119 extern const char * const config_event_context_ppid;
120 extern const char * const config_event_context_vppid;
121 extern const char * const config_event_context_pthread_id;
122 extern const char * const config_event_context_hostname;
123 extern const char * const config_event_context_ip;
124 extern const char * const config_event_context_perf_thread_counter;
125 extern const char * const config_event_context_app;
126 extern const char * const config_event_context_interruptible;
127 extern const char * const config_event_context_preemptible;
128 extern const char * const config_event_context_need_reschedule;
129 extern const char * const config_event_context_migratable;
130
131 #endif /* CONFIG_SESSION_INTERNAL_H */
This page took 0.030846 seconds and 4 git commands to generate.