应用程序见解 - 记录异常

时间:2016-01-27 21:55:34

标签: azure azure-application-insights

我在我的应用中为Application Insights编写了一个自定义记录器。在Azure门户中查看App Insights时,我没有看到任何例外或任何事件。这是logger类代码,当我调试代码时,我确实看到了一个分配给InstrumentationKey属性的键,任何想法我在这里做错了什么?我是否需要将其他信息附加到客户端或配置?

evalc

3 个答案:

答案 0 :(得分:9)

我创建了一个新的控制台应用程序,安装了最新的稳定的ApplicationInsights SDK并且几乎保留了您的示例,但有一点但重要的区别 - 在调用TrackException或添加了TelemetryClient.Flush()

之后,我要么让它等待关闭之前
namespace logtest
{
    class Program
    {
        static void Main(string[] args)
        {
            AppInsightsLogger logger = new AppInsightsLogger();
            logger.LogException(new InvalidOperationException("Is data showing?"));

            // either wait for a couple of minutes for the batch to be sent of add ai.Flush() after ai.TrackException() to send the batch immediately
            Console.ReadLine();
        }
    }

    public class AppInsightsLogger
    {
        private TelemetryClient ai;

        public AppInsightsLogger()
        {
            ai = new TelemetryClient();
            if (string.IsNullOrEmpty(ai.InstrumentationKey))
            {
                // attempt to load instrumentation key from app settings
                var appSettingsTiKey = "<ikey>";
                if (!string.IsNullOrEmpty(appSettingsTiKey))
                {
                    TelemetryConfiguration.Active.InstrumentationKey = appSettingsTiKey;
                    ai.InstrumentationKey = appSettingsTiKey;
                }
                else
                {
                    throw new Exception("Could not find instrumentation key for Application Insights");
                }
            }
        }
        public void LogException(Exception ex)
        {
            ai.TrackException(ex);
            // ai.Flush();
        }
    }
}

首先,我可以看到在Visual Studio调试输出窗口中发送的遥测项目: enter image description here

然后我可以看到遥测器将我的机器留在Fiddler中,我也可以看到它已被我们的数据收集终端成功接受。 enter image description here

最后我可以在门户网站上看到它:

enter image description here

答案 1 :(得分:1)

如今,问题和已接受的答案已过时。现代方法是添加Microsoft.ApplicationInsights.AspNet NuGet程序包,该程序包具有开箱即用的日志记录。

请参阅the official docs

文档要点:

  1. ApplicationInsightsLoggerProvider默认为启用。
  2. 捕获的日志类型可以在appsettings.json中进行配置(如果您确实需要,也可以通过编程方式进行配置)
    "Logging": {
        "LogLevel": {
            "Default": "Warning"
        },
        "ApplicationInsights": {
            "LogLevel": {
                "Default": "Error"
            }
        }
    }

答案 2 :(得分:0)

对于版本 3 的 webjob,我尝试实例化 TelemetryClient 并调用 TrackException(),以及调用 Flush() 并等待长达 180 秒,但没有任何效果。有效的是使用 ILogger 记录器对象并将异常传递给 LogError()。