在Azure Web应用程序中的asp.net核心RC2中设置Application Insights Instrumentation键

时间:2016-06-17 13:33:17

标签: azure asp.net-core azure-application-insights

我正在使用asp.net核心RC2开发一个Web应用程序。我在Azure WebApp上托管此应用程序。我在应用程序中使用应用程序见解。现在我希望从webapp应用程序设置中读取Instrumentation键,以便我的开发人员可以在不重新部署应用程序的情况下更改它(或者我可以将其添加到azure Web应用程序而无需在自动部署期间编辑配置文件)

我见过的唯一动态方式是使用

builder.AddApplicationInsightsSettings(instrumentationKey: iKey);

这个问题是配置仍然没有加载,所以如何从Web应用程序读取值以填充iKey。

1 个答案:

答案 0 :(得分:0)

您可以通过配置设置检测密钥。 See example here
它将需要重新启动应用程序才能应用新设置。