前のトピック: EPAgent イベントとトランザクション追跡次のトピック: EPAgent のデフォルト プラグイン


エラーまたはイベント データの XML スキーマ

フォーマル XSD スキーマは、以下の内容をサポートしています。

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
   <xs:element name="event" type="eventElement">
      <xs:annotation>
         <xs:documentation>The root element for events.(イベントのルート エレメント。) This element is nearly equivalent to the calledComponent element, except that the event element must occur only once, at the outermost level.(このエレメントは、イベント エレメントが最も外側のレベルで一度のみ発生する必要があることを除き、ほぼ calledComponent エレメントと同等です。)</xs:documentation>
      </xs:annotation>
   </xs:element>
   <xs:element name="param">
      <xs:complexType>
         <xs:attribute name="name" type="xs:string" use="required"/>
         <xs:attribute name="value" type="xs:string" use="required"/>
      </xs:complexType>
   </xs:element>
   <xs:element name="calledComponent" type="eventElement">
      <xs:annotation>
         <xs:documentation>A component called by the containing element.(含んでいるエレメントによって呼び出されるコンポーネント。)  This element is nearly equivalent to the event element, except that this element cannot occur at the outermost level.(このエレメントは、最も外側のレベルで発生しないことを除き、ほぼ イベント エレメントと同等です。)
         </xs:documentation>
      </xs:annotation>
   </xs:element>
   <xs:complexType name="eventElement">
      <xs:sequence>
         <xs:element ref="param" minOccurs="0" maxOccurs="unbounded"/>
         <xs:element ref="calledComponent" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
      <xs:attribute name="startTime" type="xs:dateTime" use="optional"/>
      <xs:attribute name="offset" type="xs:integer" use="optional" default="0"/>
      <xs:attribute name="duration" type="xs:dateTime" use="optional" default="0"/>
   </xs:complexType>
</xs:schema>