是否可以将 Application Insights 添加到网站项目类型?
在 Visual Studio 中,以下上下文菜单可用于 Web 应用程序项目,但缺少用于网站项目。
是否可以将 Application Insights 添加到网站项目类型?
在 Visual Studio 中,以下上下文菜单可用于 Web 应用程序项目,但缺少用于网站项目。
您应该能够使用 Application Insights 手动检测网站项目。以下是说明。
只是想分享我最终做了什么。首先,它似乎很有魅力。
Application Insight 是作为 ASP.NET 模块实现的,因此为了将其连接到网站项目,您需要执行以下操作:
Microsoft.ApplicationInsights.Web
NuGet 包注册AI模块web.config
<modules runAllManagedModulesForAllRequests="true">
<remove name="ApplicationInsightsWebTracking" />
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
</modules>
确保您ApplicationInsights.config
在网站基本目录中(连同web.config
) - 它定义了您要收集的遥测数据