Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
StackKeywordLevelFilter element specifies event keywords and level to include or exclude stackwalk events.
Note
Available on Windows 10, version 1709 and later.
Element Hierarchy
- <WindowsPerformanceRecorder>
- <Profiles>
- <EventProvider>
- <StackKeywordLevelFilter>
- <Profile>
- <Collectors>
- <EventCollectorId>
- <EventProviders>
- <EventProvider>
- <StackKeywordLevelFilter>
- <EventProvider>
- <EventProviders>
- <EventCollectorId>
- <Collectors>
- <EventProvider>
- <Profiles>
Syntax
<StackKeywordLevelFilter FilterIn = "true|false" Level = "unsigned byte" Operation = "Set|Add|Remove" >
<!-- Child elements -->
<keyword>
</StackKeywordLevelFilter>
Attributes and Elements
Attributes
| Attribute | Description | Data type | Required | Default |
|---|---|---|---|---|
| FilterIn | Indicates whether to include or exclude the specified stackwalk events. | boolean | Yes | |
| Level | event level | Unsigned byte | No | |
| Operation | Indicates whether keywords should be set or added. | This attribute can have one of the following values:
|
No | Set |
Child Elements
| Element | Description | Requirement |
|---|---|---|
| Keyword | Event keyword | Required |
Parent Elements
| Element | Description |
|---|---|
| EventProvider | Represents an event provider for the profile. |
Remark
When stack walking is enabled for a provider, then the stack is captured for all the events generated by the provider. Most of the time, the user is only interested in stack from only certain number of events. This element allows enabling or disabling stack walking based on keyword and level.
Even though ETW supports powerful payload and attribute filtering, events should primarily be filtered based scope filters or via level and keyword for less CPU overhead.
Example
<EventProvider Id="EventProvider_TraceLogGen" Name="*TraceLogGen">
<StackKeywordLevelFilter FilterIn="true" Level="5">
<Keyword Value="0x10000000000000"/>
</StackKeywordLevelFilter>
</EventProvider>