如何在 Azure 和开发中心使用相同的 Instrumentation Key
How to use the same Instrumentation Key in azure and dev center
目前我有两个 Instrumentations Key,一个在 Azure Application Insights 中,另一个在 Windows 开发中心。
我的 ApplicationInsights.config 有 Azure 密钥,所以我在开发中心看不到分析。
是否可以将 Windows Dev Center 密钥更改为与 Azure 相同的密钥,反之亦然?
谢谢
我设法解决了这个问题。
我的 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>
目前我有两个 Instrumentations Key,一个在 Azure Application Insights 中,另一个在 Windows 开发中心。
我的 ApplicationInsights.config 有 Azure 密钥,所以我在开发中心看不到分析。
是否可以将 Windows Dev Center 密钥更改为与 Azure 相同的密钥,反之亦然?
谢谢
我设法解决了这个问题。 我的 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>