-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEnableApplicationInsights.xml
22 lines (22 loc) · 1.08 KB
/
EnableApplicationInsights.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<configuration>
<nodes configfile="web.config">
<node path="/configuration/system.webServer/modules" action="update" key="name" collision="ignore">
<remove name="ApplicationInsightsWebTracking"/>
<add name="ApplicationInsightsWebTracking"
type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"
preCondition="managedHandler" />
<add name="EngageApplicationInsights"
type="Engage.Dnn.ApplicationInsights.ApplicationInsightsModule, Engage.ApplicationInsights"
preCondition="managedHandler"/>
</node>
<node path="/configuration/system.web/httpModules" action="update" key="name" collision="ignore">
<add name="ApplicationInsightsWebTracking"
type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
</node>
</nodes>
<nodes configfile="DotNetNuke.log4net.config">
<node path="/log4net/root" action="update" key="ref" collision="ignore">
<appender-ref ref="aiAppender"/>
</node>
</nodes>
</configuration>