我正在运行VS 2013 Update 3并安装了带有App Insights的Cloud Service。这一切都很好,很好。但是,我有三种不同的订阅(开发,暂存和生产),并希望我的开发云服务实例将应用洞察数据报告给我的开发订阅,而我的暂存云服务实例将应用洞察数据报告给我的登台订阅。如何配置此单个云应用以将数据报告给不同的订阅和/或应用洞察应用名称?
答案 0 :(得分:1)
我最终选择了以下内容:
public class ConfigSettings
{
internal class AppInsights
{
internal static bool IsEnabled
{
get
{
return CloudConfigurationManager.GetSetting("AppInsights.IsEnabled").Cast<bool>();
}
}
internal static string InstrumentationKey
{
get
{
return CloudConfigurationManager.GetSetting("AppInsights.InstrumentationKey");
}
}
}
}
public class AppInsightsHelper
{
public static void Initialize()
{
if(ConfigSettings.AppInsights.IsEnabled)
TelemetryConfiguration.Active.InstrumentationKey = ConfigSettings.AppInsights.InstrumentationKey;
}
}
// In global.asax.cs
AppInsightsHelper.Initialize();