-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathEvent-Log-Diagnostics.xml
More file actions
39 lines (39 loc) · 1.79 KB
/
Event-Log-Diagnostics.xml
File metadata and controls
39 lines (39 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Subscription xmlns="http://schemas.microsoft.com/2006/03/windows/events/subscription">
<SubscriptionId>Event-Log-Diagnostics</SubscriptionId>
<SubscriptionType>SourceInitiated</SubscriptionType>
<Description>Event log service events, errors, start and stop events for the Windows Event Log Service.</Description>
<Enabled>true</Enabled>
<Uri>http://schemas.microsoft.com/wbem/wsman/1/windows/EventLog</Uri>
<ConfigurationMode>Custom</ConfigurationMode>
<Delivery Mode="Push">
<Batching>
<MaxItems>1</MaxItems>
<MaxLatencyTime>300000</MaxLatencyTime>
</Batching>
<PushSettings>
<Heartbeat Interval="1800000"/>
</PushSettings>
</Delivery>
<Query><![CDATA[
<QueryList>
<!-- Inspired by Microsoft Documentation and/or IADGOV -->
<Query Id="0" Path="System">
<!-- Event log service events -->
<Select Path="System">*[System[Provider[@Name='Microsoft-Windows-Eventlog']]]</Select>
</Query>
<Query Id="1" Path="Security">
<!-- 1100: The event logging service has shut down. -->
<!-- 1104: The security log is now full. -->
<!-- 1105: Event log automatic backup. -->
<!-- 1108: The event logging service encountered an error while processing an incoming event published from %1 -->
<Select Path="Security">*[System[(EventID=1100 or EventID=1104 or EventID=1105 or EventID=1108)]]</Select>
</Query>
</QueryList>]]></Query>
<ReadExistingEvents>true</ReadExistingEvents>
<TransportName>http</TransportName>
<ContentFormat>RenderedText</ContentFormat>
<Locale Language="en-US"/>
<LogFile>WEC3-Windows-Diagnostics</LogFile>
<AllowedSourceNonDomainComputers/>
<AllowedSourceDomainComputers>O:NSG:NSD:(A;;GA;;;DC)(A;;GA;;;NS)(A;;GA;;;DD)</AllowedSourceDomainComputers>
</Subscription>