应用程序洞察 - 如何排除localhost

时间:2018-03-16 00:07:42

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

我已经通过标准方式向我的应用程序添加了应用程序见解,它运行正常,我从本地网站和Azure上发布的工作项目收集遥测数据。但是有很多数据是从localhost发送的,我怎么能说不从localhost发送任何数据呢?谢谢

1 个答案:

答案 0 :(得分:2)

正如Brendan所说,您可以删除localhost上的ApplicationInsights.config中的InstrumentationKey,并仅将其设置为代码中的发行版本: TelemetryConfiguration.Active.InsrumentationKey = "MyKey"

此外,您可以通过设置以下article所述的代码来禁用遥测

TelemetryConfiguration.Active.DisableTelemetry = true;

有关如何在Application Insights上忽略localhost的更多详细信息,可以参考此case