0

我正在运行 VS 2013 Update 3 并安装了带有 App Insights 的云服务。这一切都很好。但是,我有三个不同的订阅(开发、暂存和生产),并且希望我的开发云服务实例向我的开发订阅报告应用程序洞察数据,而我的暂存云服务实例向我的暂存订阅报告应用程序洞察数据。如何配置此单一云应用程序以将数据报告给不同的订阅和/或应用程序洞察应用程序名称?

4

1 回答 1

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();
于 2014-10-21T19:43:07.287 回答