【发布时间】:2022-08-04 21:05:18
【问题描述】:
ApplicationInsightsWebTracking 在我们的应用程序中失败并显示 500 状态代码。错误信息是
这是 web.config 的代码:
<system.web>
<authentication mode=\"None\" />
<compilation debug=\"true\" targetFramework=\"4.7.2\" />
<httpRuntime targetFramework=\"4.7.2\" />
<httpModules>
<add name=\"ApplicationInsightsWebTracking\" type=\"Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web\" />
</httpModules>
<customErrors mode=\"On\" />
</system.web>
与应用程序洞察集成的代码是标准的。关于为什么会发生此错误的任何想法?
标签: asp.net .net azure azure-application-insights