skywalking.xsd 834 字节
Newer Older
Z
zhangxin10 已提交
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
Z
zhangxin10 已提交
2
<xsd:schema xmlns="http://cloud.asiainfo.com/schema/skywalking"
3
            xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://cloud.asiainfo.com/schema/skywalking">
Z
zhangxin10 已提交
4

5
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
Z
zhangxin10 已提交
6

7 8
    <xsd:element name="trace" type="traceType">
    </xsd:element>
Z
zhangxin10 已提交
9

10 11 12 13 14 15 16 17 18 19
    <xsd:complexType name="traceType">
        <xsd:attribute name="packageExpression" use="required">
            <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                    <xsd:pattern value="[\w|.]*\.\*"/>
                </xsd:restriction>
            </xsd:simpleType>
        </xsd:attribute>
        <xsd:attribute name="classExpression" type="xsd:string" use="optional" default="*"/>
    </xsd:complexType>
Z
zhangxin10 已提交
20
</xsd:schema>