-
Notifications
You must be signed in to change notification settings - Fork 0
/
Web.config
64 lines (63 loc) · 4.47 KB
/
Web.config
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
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<!--
For a description of web.config changes for .NET 4.5 see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.5" />
</system.Web>
-->
<system.web>
<healthMonitoring enabled="true">
<providers>
<clear/>
<add name="TraceEventProvider" type="System.Web.Management.TraceWebEventProvider"/>
</providers>
<profiles>
<clear/>
<add name="DefaultProfile" minInstances="1" maxLimit="Infinite" minInterval="00:00:05"/>
</profiles>
<rules>
<clear/>
<add name="All Errors" eventName="All Errors" provider="TraceEventProvider" profile="DefaultProfile"/>
<add name="Infrastructure Errors" eventName="Infrastructure Errors" provider="TraceEventProvider" profile="DefaultProfile"/>
<add name="Request Processing Errors" eventName="Request Processing Errors" provider="TraceEventProvider" profile="DefaultProfile"/>
<add name="Custom Errors" eventName="Custom Errors" provider="TraceEventProvider" profile="DefaultProfile"/>
<!--
<add name="Application Lifetime Events" eventName="Application Lifetime Events" provider="TraceEventProvider" profile="DefaultProfile" />
<add name="Failure Audits" eventName="Failure Audits" provider="TraceEventProvider" profile="DefaultProfile" />
-->
</rules>
<eventMappings>
<clear/>
<add name="All Errors" type="System.Web.Management.WebBaseErrorEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647"/>
<add name="Infrastructure Errors" type="System.Web.Management.WebErrorEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647"/>
<add name="Request Processing Errors" type="System.Web.Management.WebRequestErrorEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647"/>
<add name="Custom Errors" type="System.Web.Management.WebBaseErrorEvent, System.Web,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="100001" endEventCode="2147483647"/>
<!--
<add name="Application Lifetime Events" type="System.Web.Management.WebApplicationLifetimeEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="Heartbeats" type="System.Web.Management.WebHeartbeatEvent, System.Web,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="All Events" type="System.Web.Management.WebBaseEvent, System.Web,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="All Audits" type="System.Web.Management.WebAuditEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="Failure Audits" type="System.Web.Management.WebFailureAuditEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="Success Audits" type="System.Web.Management.WebSuccessAuditEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
<add name="Request Processing Events" type="System.Web.Management.WebRequestEvent, System.Web,Version=4.0.0.0,Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="2147483647" />
-->
</eventMappings>
</healthMonitoring>
<compilation targetFramework="4.5"/>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>
<system.diagnostics>
<trace autoflush="true" indentsize="4">
<listeners>
<clear/>
<add name="Default" type="System.Diagnostics.TextWriterTraceListener" initializeData="error.log"/>
</listeners>
</trace>
</system.diagnostics>
</configuration>