-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSvcEventManifest.man
84 lines (74 loc) · 3.28 KB
/
SvcEventManifest.man
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<instrumentationManifest xmlns="http://schemas.microsoft.com/win/2004/08/events">
<instrumentation xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:win="http://manifests.microsoft.com/win/2004/08/windows/events">
<events xmlns="http://schemas.microsoft.com/win/2004/08/events">
<!--Publisher Info -->
<provider name="NCC Group-Mem Page Delta"
guid="{9CDE86C9-DFB9-463f-B2C5-71EEC232A69C}"
symbol="NCCGROUP_MEMPAGEDELTA_PUBLISHER"
resourceFileName="C:\Windows\NCCGroup-WMPD-EvtLog.dll"
messageFileName="C:\Windows\NCCGroup-WMPD-EvtLog.dll">
<!--Channel to which this Publisher can publish -->
<channels>
<channel chid="MyOpChannel"
name="NCC Group-Mem Page Delta/Operational"
type="Operational"
symbol="MEMPAGEDELTAOP"
isolation="Application" enabled="true"/>
<channel chid="MyTotalChannel"
name="NCC Group-Mem Page Delta/Total"
type="Operational"
symbol="MEMPAGEDELTATOT"
isolation="Application" enabled="true"/>
<channel chid="MyDebugChannel"
name="NCC Group-Mem Page Delta/Debug"
type="Debug"
symbol="MEMPAGEDELTADEBUG"
isolation="Application" enabled="true"/>
</channels>
<!--Event Templates -->
<templates>
<template tid="SimpleEvent">
<data name="Message" inType="win:UnicodeString"/>
<UserData>
<SimpleEvent xmlns="http://manifests.microsoft.com/win/2004/08/windows/simpleevent">
<ExceptionMessage>%1</ExceptionMessage>
</SimpleEvent>
</UserData>
</template>
</templates>
<events>
<event value="1"
level="win:Informational"
template="SimpleEvent"
opcode="win:Info"
channel="MyOpChannel"
symbol="DNP_OP_EVENT"
message="$(string.SimpleMessage)"/>
<event value="2"
level="win:Informational"
template="SimpleEvent"
opcode="win:Info"
channel="MyDebugChannel"
symbol="DNP_DEBUG_EVENT"
message="$(string.SimpleMessage)"/>
<event value="3"
level="win:Informational"
template="SimpleEvent"
opcode="win:Info"
channel="MyTotalChannel"
symbol="DNP_TOT_EVENT"
message="$(string.SimpleMessage)"/>
</events>
</provider>
</events>
</instrumentation>
<localization>
<resources culture="en-US">
<stringTable>
<string id="SimpleMessage" value="%1" stringType="string"/>
</stringTable>
</resources>
</localization>
</instrumentationManifest>