asp.net – 启用Application Insights会使Web应用程序挂起

前端之家收集整理的这篇文章主要介绍了asp.net – 启用Application Insights会使Web应用程序挂起前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的Web项目上启用Application Insights后,它可以运行几个请求,但随后所有请求都会无限期挂起.这是使用Visual Studio调试器在本地运行的.使用fiddler,我可以看到请求正在等待响应,这种情况永远不会发生.没有错误.最终Visual Studio也挂了,我需要杀掉它.

我正在使用Visual Studio 2013更新4.
我右键单击了我的Web项目,然后单击Add Application Insights Telemetry.
接下来,我从ApplicationInsights.config中删除了Instrumentation Key,因为我不希望遥测用于本地开发. Instrumentation Key将在实时应用程序的Azure App Settings中设置.

如果我在没有Application Insights的情况下退回,我就不会挂起.

有任何想法吗 ?
谢谢!

解决方法

我运行2.0.0-rc1并遇到了这个问题.在ApplicationInsights.config中注释这行代码解决了这个问题.
<Add Type="Microsoft.ApplicationInsights.Extensibility.PerfCounterCollector.PerformanceCollectorModule,Microsoft.AI.PerfCounterCollector">

将Application Insights升级到2.0.0也为我解决了这个问题.谢谢Anastasia&阿伦!

原文链接:https://www.f2er.com/aspnet/245469.html

猜你在找的asp.Net相关文章