instrumentationManifest 元素
資訊清單的根節點。
<xs:element name="instrumentationManifest">
<xs:complexType>
<xs:complexContent>
<xs:extension
base="InstrumentationManifestType"
>
<xs:choice
maxOccurs="3"
>
<xs:choice>
<xs:element name="metadata"
type="MetadataType"
/>
<xs:element name="instrumentation"
type="InstrumentationType"
/>
</xs:choice>
<xs:element name="localization"
type="LocalizationType"
/>
<xs:any
processContents="lax"
minOccurs="0"
maxOccurs="unbounded"
namespace="##other"
/>
</xs:choice>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
子元素
元素 | 類型 | 描述 |
---|---|---|
儀錶 | InstrumentationType | 本節會定義一或多個事件提供者及其記錄的事件。 |
定位 | LocalizationType | 本節會定義取用者用於顯示的當地語系化訊息字串。 例如,本節會包含提供者名稱的當地語系化訊息字串、您定義的事件,以及您定義的任何事件屬性,例如通道、工作和 opcode。 |
元 | MetadataType | 本節會定義其他資訊清單可以使用的元資料類型。 如需範例,請參閱 Windows SDK 的 \Include 資料夾中所包含的Winmeta.xml檔案。 |
備註
instrumentationManifest元素必須包含下列命名空間:
- xmlns=「 https://schemas.microsoft.com/win/2004/08/events 」 xmlns:win=「 https://manifests.microsoft.com/win/2004/08/windows/events 」 xmlns:xs=「 https://www.w3.org/2001/XMLSchema 」
資訊清單必須包含檢測區段和當地語系化區段。 檢測區段和中繼資料區段互斥 (您無法在相同的資訊清單) 中定義兩者。 雖然您可以建立包含中繼資料區段的資訊清單,但服務不會使用它;服務唯一可辨識的中繼資料是在Winmeta.xml檔案中找到的中繼資料。
範例
下列範例顯示完整定義的檢測資訊清單的基本架構。
<instrumentationManifest
xmlns="http://schemas.microsoft.com/win/2004/08/events"
xmlns:win="https://manifests.microsoft.com/win/2004/08/windows/events"
xmlns:xs="https://www.w3.org/2001/XMLSchema"
>
<instrumentation>
<events>
<provider ...>
<channels>
<importChanel .../>
<channel .../>
</channels>
<levels>
<level .../>
</levels>
<tasks>
<task .../>
</tasks>
<opcodes>
<opcode .../>
</opcodes>
<keywords>
<keyword .../>
</keywords>
<filters>
<filter .../>
</filters>
<maps>
<valueMap ...>
<map .../>
</valueMap>
<bitMap ...>
<map .../>
</bitMap>
</maps>
<namedQueries>
<patternMap ...>
<map .../>
</patternMap>
</namedQueries>
<templates>
<template ...>
<data .../>
<UserData>
<!-- valid XML fragment -->
</UserData>
</template>
</templates>
<events>
<event .../>
</events>
</provider>
</events>
</instrumentation>
<localization>
<resources ...>
<stringTable>
<string .../>
</stringTable>
</resources>
</localization>
</instrumentationManifest>
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 |
Windows Vista [僅限傳統型應用程式] |
最低支援的伺服器 |
Windows Server 2008 [僅限傳統型應用程式] |