正如Brendan所说,您可以删除localhost上的ApplicationInsights.config中的InstrumentationKey
,并仅将其设置为代码中的发行版本:
TelemetryConfiguration.Active.InsrumentationKey = "MyKey"
。
此外,您可以通过设置以下article所述的代码来禁用遥测。
TelemetryConfiguration.Active.DisableTelemetry = true;
有关如何在Application Insights上忽略localhost的更多详细信息,可以参考此case。