目前,我有两个Instrumentations Key,一个在Azure Application Insights中,另一个在Windows开发人员中心。
我的ApplicationInsights.config具有Azure密钥,因此我在开发中心看不到分析。
是否有将Windows开发人员中心密钥更改为与Azure相同,反之亦然?
由于
答案 0 :(得分:0)
我设法解决了这个问题。 我的ApplicationInsights.config配置错误,缺少xmlns。 它应该是这样的:
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
<InstrumentationKey> ...key here... </InstrumentationKey>
</ApplicationInsights>
相反,我有这样的话:
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationInsights>
<InstrumentationKey> ...key here... </InstrumentationKey>
</ApplicationInsights>