Rotate timer
[lttng-tools.git] / src / common / config / session.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4
5 Permission is hereby granted, free of charge, to any person obtaining a copy
6 of this software and associated documentation files (the "Software"), to deal
7 in the Software without restriction, including without limitation the rights
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 copies of the Software, and to permit persons to whom the Software is
10 furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 THE SOFTWARE.
22 -->
23 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
24 elementFormDefault="qualified" version="2.11">
25
26 <xs:simpleType name="name_type">
27 <xs:restriction base="xs:string">
28 <xs:maxLength value="255"/>
29 </xs:restriction>
30 </xs:simpleType>
31
32 <xs:simpleType name="uint64_type">
33 <xs:restriction base="xs:integer">
34 <xs:minInclusive value="0"/>
35 <xs:maxInclusive value="18446744073709551615"/>
36 </xs:restriction>
37 </xs:simpleType>
38
39 <xs:simpleType name="uint32_type">
40 <xs:restriction base="xs:integer">
41 <xs:minInclusive value="0"/>
42 <xs:maxInclusive value="4294967295"/>
43 </xs:restriction>
44 </xs:simpleType>
45
46 <!--
47 Maps to the range allowed for blocking timeout: -1 (block forever),
48 0 (do not block), positive integer value (blocking time in usec) limited
49 by its signed 32-bit representation when converted to msec.
50 -->
51 <xs:simpleType name="blocking_timeout_type">
52 <xs:restriction base="xs:integer">
53 <xs:minInclusive value="-1" />
54 <xs:maxInclusive value="2147483648000" />
55 </xs:restriction>
56 </xs:simpleType>
57
58 <xs:simpleType name="channel_overwrite_mode_type">
59 <xs:restriction base="xs:string">
60 <xs:enumeration value="DISCARD"/>
61 <xs:enumeration value="OVERWRITE"/>
62 </xs:restriction>
63 </xs:simpleType>
64
65 <!-- Maps to the lttng_event_output enum -->
66 <xs:simpleType name="event_output_type">
67 <xs:restriction base="xs:string">
68 <xs:enumeration value="SPLICE"/>
69 <xs:enumeration value="MMAP"/>
70 </xs:restriction>
71 </xs:simpleType>
72
73 <!-- Maps to the lttng_loglevel_type enum -->
74 <xs:simpleType name="loglevel_type">
75 <xs:restriction base="xs:string">
76 <xs:enumeration value="ALL"/>
77 <xs:enumeration value="RANGE"/>
78 <xs:enumeration value="SINGLE"/>
79 </xs:restriction>
80 </xs:simpleType>
81
82 <!-- Maps to the lttng_event_type enum -->
83 <xs:simpleType name="event_type_type">
84 <xs:restriction base="xs:string">
85 <xs:enumeration value="ALL"/>
86 <xs:enumeration value="TRACEPOINT"/>
87 <xs:enumeration value="PROBE"/>
88 <xs:enumeration value="FUNCTION"/>
89 <xs:enumeration value="FUNCTION_ENTRY"/>
90 <xs:enumeration value="NOOP"/>
91 <xs:enumeration value="SYSCALL"/>
92 <xs:enumeration value="KPROBE"/>
93 <xs:enumeration value="KRETPROBE"/>
94 </xs:restriction>
95 </xs:simpleType>
96
97 <xs:complexType name="event_probe_attributes_type">
98 <xs:all>
99 <xs:element name="symbol_name" type="name_type" minOccurs="0"/>
100 <xs:element name="address" type="uint64_type" minOccurs="0"/>
101 <xs:element name="offset" type="uint64_type" minOccurs="0"/>
102 </xs:all>
103 </xs:complexType>
104
105 <xs:complexType name="event_ftrace_attributes_type">
106 <xs:all>
107 <xs:element name="symbol_name" type="name_type"/>
108 </xs:all>
109 </xs:complexType>
110
111 <xs:complexType name="event_attributes_type">
112 <xs:choice>
113 <xs:element name="probe_attributes" type="event_probe_attributes_type"/>
114 <xs:element name="function_attributes" type="event_ftrace_attributes_type"/>
115 </xs:choice>
116 </xs:complexType>
117
118 <xs:complexType name="event_exclusion_list_type">
119 <xs:sequence>
120 <xs:element name="exclusion" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
121 </xs:sequence>
122 </xs:complexType>
123
124 <xs:complexType name="event_type">
125 <xs:all>
126 <xs:element name="name" type="name_type" minOccurs="0"/>
127 <xs:element name="enabled" type="xs:boolean" default="true" minOccurs="0"/>
128 <xs:element name="type" type="event_type_type" default="TRACEPOINT" minOccurs="0"/>
129 <xs:element name="loglevel_type" type="loglevel_type" default="ALL" minOccurs="0"/>
130 <xs:element name="loglevel" type="xs:int" default="-1" minOccurs="0"/>
131 <xs:element name="filter" type="xs:string" minOccurs="0"/>
132 <xs:element name="exclusions" type="event_exclusion_list_type" minOccurs="0"/>
133 <xs:element name="attributes" type="event_attributes_type" minOccurs="0"/>
134 </xs:all>
135 </xs:complexType>
136
137 <xs:complexType name="event_list_type">
138 <xs:sequence>
139 <xs:element name="event" type="event_type" minOccurs="0" maxOccurs="unbounded"/>
140 </xs:sequence>
141 </xs:complexType>
142
143 <xs:complexType name="event_perf_context_type">
144 <xs:all>
145 <xs:element name="type" type="uint32_type"/>
146 <xs:element name="config" type="uint64_type"/>
147 <xs:element name="name" type="name_type"/>
148 </xs:all>
149 </xs:complexType>
150
151 <xs:complexType name="event_app_context_type">
152 <xs:all>
153 <xs:element name="provider_name" type="xs:string"/>
154 <xs:element name="ctx_name" type="xs:string"/>
155 </xs:all>
156 </xs:complexType>
157
158 <!-- Maps to the lttng_event_context_type enum -->
159 <xs:simpleType name="event_context_type_type">
160 <xs:restriction base="xs:string">
161 <xs:enumeration value="PID"/>
162 <xs:enumeration value="PROCNAME"/>
163 <xs:enumeration value="PRIO"/>
164 <xs:enumeration value="NICE"/>
165 <xs:enumeration value="VPID"/>
166 <xs:enumeration value="TID"/>
167 <xs:enumeration value="VTID"/>
168 <xs:enumeration value="PPID"/>
169 <xs:enumeration value="VPPID"/>
170 <xs:enumeration value="PTHREAD_ID"/>
171 <xs:enumeration value="HOSTNAME"/>
172 <xs:enumeration value="IP"/>
173 <xs:enumeration value="APP"/>
174 </xs:restriction>
175 </xs:simpleType>
176
177 <xs:complexType name="event_context_type">
178 <xs:choice>
179 <xs:element name="type" type="event_context_type_type"/>
180 <xs:element name="perf" type="event_perf_context_type"/>
181 <xs:element name="app" type="event_app_context_type"/>
182 </xs:choice>
183 </xs:complexType>
184
185 <xs:complexType name="event_context_list_type">
186 <xs:sequence>
187 <xs:element name="context" type="event_context_type" minOccurs="0" maxOccurs="unbounded"/>
188 </xs:sequence>
189 </xs:complexType>
190
191 <!-- Maps to struct lttng_channel -->
192 <xs:complexType name="channel_type">
193 <xs:all>
194 <xs:element name="name" type="name_type"/>
195 <xs:element name="enabled" type="xs:boolean" default="true" minOccurs="0"/>
196 <xs:element name="overwrite_mode" type="channel_overwrite_mode_type" default="DISCARD" minOccurs="0"/>
197 <xs:element name="subbuffer_size" type="uint64_type" minOccurs="0"/> <!-- bytes -->
198 <xs:element name="subbuffer_count" type="uint64_type" default="4" minOccurs="0"/>
199 <xs:element name="switch_timer_interval" type="uint32_type" default="0" minOccurs="0"/> <!-- usec -->
200 <xs:element name="read_timer_interval" type="uint32_type"/> <!-- usec -->
201 <xs:element name="blocking_timeout" type="blocking_timeout_type" default="0" minOccurs="0" /> <!-- usec -->
202 <xs:element name="output_type" type="event_output_type"/>
203 <xs:element name="tracefile_size" type="uint64_type" default="0" minOccurs="0"/> <!-- bytes -->
204 <xs:element name="tracefile_count" type="uint64_type" default="0" minOccurs="0"/>
205 <xs:element name="live_timer_interval" type="uint32_type" default="0" minOccurs="0"/> <!-- usec -->
206 <xs:element name="events" type="event_list_type" minOccurs="0"/>
207 <xs:element name="contexts" type="event_context_list_type" minOccurs="0"/>
208 <xs:element name="monitor_timer_interval" type="uint64_type" default="0" minOccurs="0"/> <!-- usec -->
209 </xs:all>
210 </xs:complexType>
211
212 <!-- Maps to the lttng_domain_type enum -->
213 <xs:simpleType name="domain_type_type">
214 <xs:restriction base="xs:string">
215 <xs:enumeration value="KERNEL"/>
216 <xs:enumeration value="UST"/>
217 <xs:enumeration value="JUL"/>
218 <xs:enumeration value="LOG4J"/>
219 <xs:enumeration value="PYTHON"/>
220 </xs:restriction>
221 </xs:simpleType>
222
223 <!-- Maps to the lttng_buffer_type enum -->
224 <xs:simpleType name="domain_buffer_type">
225 <xs:restriction base="xs:string">
226 <xs:enumeration value="PER_PID"/>
227 <xs:enumeration value="PER_UID"/>
228 <xs:enumeration value="GLOBAL"/>
229 </xs:restriction>
230 </xs:simpleType>
231
232 <xs:complexType name="channel_list_type">
233 <xs:sequence>
234 <xs:element name="channel" type="channel_type" minOccurs="0" maxOccurs="unbounded" />
235 </xs:sequence>
236 </xs:complexType>
237
238 <xs:complexType name="pid_target_type">
239 <xs:all>
240 <xs:element name="pid" type="xs:integer" />
241 </xs:all>
242 </xs:complexType>
243
244 <!-- Maps to a list of pid_targets-->
245 <xs:complexType name="targets_type">
246 <xs:sequence>
247 <xs:choice>
248 <xs:element name="pid_target" type="pid_target_type" minOccurs="0" maxOccurs="unbounded" />
249 </xs:choice>
250 </xs:sequence>
251 </xs:complexType>
252
253 <!-- Maps to a pid_tracker-->
254 <xs:complexType name="pid_tracker_type">
255 <xs:all>
256 <xs:element name="targets" type="targets_type" />
257 </xs:all>
258 </xs:complexType>
259
260 <!-- Maps to a list of trackers-->
261 <xs:complexType name="trackers_type">
262 <xs:sequence minOccurs="0" maxOccurs="unbounded">
263 <xs:element name="pid_tracker" type="pid_tracker_type" maxOccurs="1" />
264 </xs:sequence>
265 </xs:complexType>
266
267 <!-- Maps to struct lttng_domain, contains channels and pid_tracker -->
268 <xs:complexType name="domain_type">
269 <xs:all>
270 <xs:element name="type" type="domain_type_type"/>
271 <xs:element name="buffer_type" type="domain_buffer_type"/>
272 <xs:element name="channels" type="channel_list_type" minOccurs="0"/>
273 <xs:element name="trackers" type="trackers_type" minOccurs="0"/>
274 </xs:all>
275 </xs:complexType>
276
277 <xs:complexType name="session_attributes_type">
278 <xs:all>
279 <xs:element name="snapshot_mode" type="xs:boolean" minOccurs="0"/>
280 <xs:element name="live_timer_interval" type="uint32_type" minOccurs="0"/> <!-- usec -->
281 <xs:element name="rotation_timer_interval" type="uint64_type" minOccurs="0"/> <!-- usec -->
282 </xs:all>
283 </xs:complexType>
284
285 <xs:complexType name="domain_list_type">
286 <xs:sequence>
287 <xs:element name="domain" type="domain_type" minOccurs="0" maxOccurs="unbounded"/>
288 </xs:sequence>
289 </xs:complexType>
290
291 <xs:complexType name="net_output_type">
292 <xs:all>
293 <xs:element name="control_uri" type="xs:string"/>
294 <xs:element name="data_uri" type="xs:string"/>
295 </xs:all>
296 </xs:complexType>
297
298 <xs:complexType name="destination_type">
299 <xs:choice>
300 <xs:element name="path" type="xs:string"/>
301 <xs:element name="net_output" type="net_output_type"/>
302 </xs:choice>
303 </xs:complexType>
304
305 <xs:complexType name="consumer_output_type">
306 <xs:all>
307 <xs:element name="enabled" type="xs:boolean" default="true"/>
308 <xs:element name="destination" type="destination_type"/>
309 </xs:all>
310 </xs:complexType>
311
312 <xs:complexType name="snapshot_output_type">
313 <xs:all>
314 <xs:element name="name" type="name_type"/>
315 <xs:element name="max_size" type="uint64_type"/>
316 <xs:element name="consumer_output" type="consumer_output_type"/>
317 </xs:all>
318 </xs:complexType>
319
320 <xs:complexType name="snapshot_output_list_type">
321 <xs:sequence>
322 <xs:element name="output" type="snapshot_output_type" minOccurs="0" maxOccurs="unbounded"/>
323 </xs:sequence>
324 </xs:complexType>
325
326 <xs:complexType name="session_output_type">
327 <xs:choice>
328 <xs:element name="snapshot_outputs" type="snapshot_output_list_type"/>
329 <xs:element name="consumer_output" type="consumer_output_type"/>
330 </xs:choice>
331 </xs:complexType>
332
333 <xs:complexType name="session_type">
334 <xs:all>
335 <xs:element name="name" type="name_type"/>
336 <xs:element name="shared_memory_path" type="xs:string" minOccurs="0"/>
337 <xs:element name="domains" type="domain_list_type" minOccurs="0"/>
338 <xs:element name="started" type="xs:boolean" default="0" minOccurs="0"/>
339 <xs:element name="attributes" type="session_attributes_type" minOccurs="0"/>
340 <xs:element name="output" type="session_output_type" minOccurs="0"/>
341 </xs:all>
342 </xs:complexType>
343
344 <xs:element name="sessions">
345 <xs:complexType>
346 <xs:sequence>
347 <xs:element name="session" type="session_type" maxOccurs="unbounded"/>
348 </xs:sequence>
349 </xs:complexType>
350 </xs:element>
351
352 </xs:schema>
This page took 0.035927 seconds and 4 git commands to generate.