Application Insights无法捕获https流量

时间:2017-03-22 15:00:07

标签: azure-web-sites azure-application-insights

我们有一个配置了AI的Azure网络应用程序。

来自AI的模块添加如下:

<modules >
        <remove name="ApplicationInsightsWebTracking" />
        <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
    </modules>

我们需要前提条件,因为我们不希望捕获静态文件,但在使用前置条件时,https流量永远不会被捕获,而http流量则会被捕获。

任何想法如何使用前置条件=&#34;托管&#34;但是确保AI还能捕获https流量吗?

1 个答案:

答案 0 :(得分:0)

由于一个或另一个原因,为经典模式添加httpmodule解决了我的问题。

有谁可以解释这个?