Add kernel and UST time namespace context
[lttng-tools.git] / src / common / mi-lttng-4.0.xsd
index a6a7af6993be95d5195575cff886c2ef52313057..9b656ece4d60bf43be0fc1581ea4f6a37912d3f1 100644 (file)
@@ -1,26 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-Copyright (c) 2014 - Oliver Cotte <olivier.cotte@polymtl.ca>
-                   - Jonathan Rajotte <jonathan.r.julien@gmail.com>
-Copyright (c) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+Copyright (C) 2014 Oliver Cotte <olivier.cotte@polymtl.ca>
+Copyright (C) 2014 Jonathan Rajotte <jonathan.r.julien@gmail.com>
+Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+
+SPDX-License-Identifier: MIT
+
 -->
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
        targetNamespace="https://lttng.org/xml/ns/lttng-mi"
@@ -124,6 +109,7 @@ THE SOFTWARE.
                        <xs:enumeration value="MNT_NS" />
                        <xs:enumeration value="NET_NS" />
                        <xs:enumeration value="PID_NS" />
+                       <xs:enumeration value="TIME_NS" />
                        <xs:enumeration value="USER_NS" />
                        <xs:enumeration value="UTS_NS" />
                        <xs:enumeration value="UID" />
@@ -332,14 +318,6 @@ THE SOFTWARE.
                </xs:sequence>
        </xs:complexType>
 
-       <xs:simpleType name="tracker_target_type">
-               <xs:restriction base="xs:string">
-                       <xs:enumeration value="ALL" />
-                       <xs:enumeration value="NONE" />
-                       <xs:enumeration value="LIST" />
-               </xs:restriction>
-       </xs:simpleType>
-
        <xs:simpleType name="pidbyint">
                <xs:restriction base="xs:integer">
                        <xs:minInclusive value="0"/>
@@ -347,33 +325,31 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="pid_target_type_choice">
+       <xs:complexType name="pid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:pidbyint" />
-                       <xs:element name="name" type="xs:string" />
                        <xs:element name="all" type="xs:boolean" />
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="pid_target_type">
+       <xs:complexType name="pid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:pid_target_type_choice" />
+                       <xs:element name="type" type="tns:pid_value_type_choice" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of pid_targets-->
-       <xs:complexType name="pid_targets_type">
+       <!-- Maps to a list of pid_process_attr_values-->
+       <xs:complexType name="pid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="pid_target" type="tns:pid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="pid" type="tns:pid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
        <!-- Maps to a pid_tracker-->
-       <xs:complexType name="pid_tracker_type">
+       <xs:complexType name="pid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:pid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:pid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -384,33 +360,31 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="vpid_target_type_choice">
+       <xs:complexType name="vpid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:vpidbyint" />
-                       <xs:element name="name" type="xs:string" />
                        <xs:element name="all" type="xs:boolean" />
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="vpid_target_type">
+       <xs:complexType name="vpid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:vpid_target_type_choice" minOccurs="0" maxOccurs="1" />
+                       <xs:element name="type" type="tns:vpid_value_type_choice" minOccurs="0" maxOccurs="1" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of vpid_targets-->
-       <xs:complexType name="vpid_targets_type">
+       <!-- Maps to a list of vpid_process_attr_values-->
+       <xs:complexType name="vpid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="vpid_target" type="tns:vpid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="vpid" type="tns:vpid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
        <!-- Maps to a vpid_tracker-->
-       <xs:complexType name="vpid_tracker_type">
+       <xs:complexType name="vpid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:vpid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:vpid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -421,7 +395,7 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="uid_target_type_choice">
+       <xs:complexType name="uid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:uidbyint" />
                        <xs:element name="name" type="xs:string" />
@@ -429,25 +403,24 @@ THE SOFTWARE.
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="uid_target_type">
+       <xs:complexType name="uid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:uid_target_type_choice" minOccurs="0" maxOccurs="1" />
+                       <xs:element name="type" type="tns:uid_value_type_choice" minOccurs="0" maxOccurs="1" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of uid_targets-->
-       <xs:complexType name="uid_targets_type">
+       <!-- Maps to a list of uid_process_attr_values-->
+       <xs:complexType name="uid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="uid_target" type="tns:uid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="uid" type="tns:uid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
-       <!-- Maps to a uid_tracker-->
-       <xs:complexType name="uid_tracker_type">
+       <!-- Maps to a uid_process_attr_tracker-->
+       <xs:complexType name="uid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:uid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:uid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -458,7 +431,7 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="vuid_target_type_choice">
+       <xs:complexType name="vuid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:vuidbyint" />
                        <xs:element name="name" type="xs:string" />
@@ -466,25 +439,24 @@ THE SOFTWARE.
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="vuid_target_type">
+       <xs:complexType name="vuid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:vuid_target_type_choice" minOccurs="0" maxOccurs="1" />
+                       <xs:element name="type" type="tns:vuid_value_type_choice" minOccurs="0" maxOccurs="1" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of vuid_targets-->
-       <xs:complexType name="vuid_targets_type">
+       <!-- Maps to a list of vuid_process_attr_values-->
+       <xs:complexType name="vuid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="vuid_target" type="tns:vuid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="vuid" type="tns:vuid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
-       <!-- Maps to a vuid_tracker-->
-       <xs:complexType name="vuid_tracker_type">
+       <!-- Maps to a vuid_process_attr_tracker-->
+       <xs:complexType name="vuid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:vuid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:vuid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -495,7 +467,7 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="gid_target_type_choice">
+       <xs:complexType name="gid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:gidbyint" />
                        <xs:element name="name" type="xs:string" />
@@ -503,25 +475,24 @@ THE SOFTWARE.
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="gid_target_type">
+       <xs:complexType name="gid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:gid_target_type_choice" minOccurs="0" maxOccurs="1" />
+                       <xs:element name="type" type="tns:gid_value_type_choice" minOccurs="0" maxOccurs="1" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of gid_targets-->
-       <xs:complexType name="gid_targets_type">
+       <!-- Maps to a list of gid_process_attr_values-->
+       <xs:complexType name="gid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="gid_target" type="tns:gid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="gid" type="tns:gid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
-       <!-- Maps to a gid_tracker-->
-       <xs:complexType name="gid_tracker_type">
+       <!-- Maps to a gid_process_attr_tracker-->
+       <xs:complexType name="gid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:gid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:gid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -532,7 +503,7 @@ THE SOFTWARE.
                </xs:restriction>
        </xs:simpleType>
 
-       <xs:complexType name="vgid_target_type_choice">
+       <xs:complexType name="vgid_value_type_choice">
                <xs:choice>
                        <xs:element name="id" type="tns:vgidbyint" />
                        <xs:element name="name" type="xs:string" />
@@ -540,38 +511,37 @@ THE SOFTWARE.
                </xs:choice>
        </xs:complexType>
 
-       <xs:complexType name="vgid_target_type">
+       <xs:complexType name="vgid_value_type">
                <xs:all>
-                       <xs:element name="type" type="tns:vgid_target_type_choice" minOccurs="0" maxOccurs="1" />
+                       <xs:element name="type" type="tns:vgid_value_type_choice" minOccurs="0" maxOccurs="1" />
                        <xs:element name="success" type="xs:boolean" default="false" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of vgid_targets-->
-       <xs:complexType name="vgid_targets_type">
+       <!-- Maps to a list of vgid_process_attr_values-->
+       <xs:complexType name="vgid_process_attr_values_type">
                <xs:sequence>
-                       <xs:element name="vgid_target" type="tns:vgid_target_type" minOccurs="0" maxOccurs="unbounded"/>
+                       <xs:element name="vgid" type="tns:vgid_value_type" minOccurs="0" maxOccurs="unbounded"/>
                </xs:sequence>
        </xs:complexType>
 
-       <!-- Maps to a vgid_tracker-->
-       <xs:complexType name="vgid_tracker_type">
+       <!-- Maps to a vgid_process_attr_tracker-->
+       <xs:complexType name="vgid_process_attr_tracker_type">
                <xs:all>
-                       <xs:element name="target_type" type="tns:tracker_target_type" minOccurs="0" maxOccurs="1" />
-                       <xs:element name="targets" type="tns:vgid_targets_type" minOccurs="0" />
+                       <xs:element name="process_attr_values" type="tns:vgid_process_attr_values_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
-       <!-- Maps to a list of trackers-->
-       <xs:complexType name="trackers_type">
+       <!-- Maps to a list of process_attr_trackers-->
+       <xs:complexType name="process_attr_trackers_type">
                <xs:sequence>
                        <xs:choice minOccurs="0" maxOccurs="unbounded">
-                               <xs:element name="pid_tracker" type="tns:pid_tracker_type" maxOccurs="1" />
-                               <xs:element name="vpid_tracker" type="tns:vpid_tracker_type" maxOccurs="1" />
-                               <xs:element name="uid_tracker" type="tns:uid_tracker_type" maxOccurs="1" />
-                               <xs:element name="vuid_tracker" type="tns:vuid_tracker_type" maxOccurs="1" />
-                               <xs:element name="gid_tracker" type="tns:gid_tracker_type" maxOccurs="1" />
-                               <xs:element name="vgid_tracker" type="tns:vgid_tracker_type" maxOccurs="1" />
+                               <xs:element name="pid_process_attr_tracker" type="tns:pid_process_attr_tracker_type" maxOccurs="1" />
+                               <xs:element name="vpid_process_attr_tracker" type="tns:vpid_process_attr_tracker_type" maxOccurs="1" />
+                               <xs:element name="uid_process_attr_tracker" type="tns:uid_process_attr_tracker_type" maxOccurs="1" />
+                               <xs:element name="vuid_process_attr_tracker" type="tns:vuid_process_attr_tracker_type" maxOccurs="1" />
+                               <xs:element name="gid_process_attr_tracker" type="tns:gid_process_attr_tracker_type" maxOccurs="1" />
+                               <xs:element name="vgid_process_attr_tracker" type="tns:vgid_process_attr_tracker_type" maxOccurs="1" />
                        </xs:choice>
                </xs:sequence>
        </xs:complexType>
@@ -584,7 +554,7 @@ THE SOFTWARE.
                        <xs:element name="pids" type="tns:pids_type" minOccurs="0" />
                        <xs:element name="channels" type="tns:channels_type" minOccurs="0" />
                        <xs:element name="events" type="tns:event_list_type" minOccurs="0" />
-                       <xs:element name="trackers" type="tns:trackers_type" minOccurs="0" />
+                       <xs:element name="process_attr_trackers" type="tns:process_attr_trackers_type" minOccurs="0" />
                </xs:all>
        </xs:complexType>
 
@@ -885,7 +855,7 @@ THE SOFTWARE.
                        <xs:element name="channels" type="tns:channels_type" minOccurs="0" />
                        <xs:element name="events" type="tns:event_list_type" minOccurs="0" />
                        <xs:element name="channel" type="tns:channel_type" minOccurs="0" />
-                       <xs:element name="trackers" type="tns:trackers_type" minOccurs="0" />
+                       <xs:element name="process_attr_trackers" type="tns:process_attr_trackers_type" minOccurs="0" />
                        <xs:element name="metadata_action" type="tns:metadata_cmd_type" minOccurs="0" />
                        <xs:element name="regenerate_action" type="tns:regenerate_cmd_type" minOccurs="0" />
                        <xs:element name="rotation" type="tns:rotate_type" minOccurs="0" />
This page took 0.02983 seconds and 4 git commands to generate.