始终使用serilog

时间:2017-02-21 21:59:26

标签: logging serilog

我正在使用Serilog进行日志记录。对于每个日志,我想记录上下文信息,如用户名和一些其他上下文信息。所以我用静态方法创建了包装器,如下所示

public static class MyLogger
{    
    public static void Error(Exception ex, string messageTemplate, params object[] propertyvalues)
    {
        var properties = new List<object>(propertyvalues);
        if (HttpContext.Current != null && HttpContext.Current.User != null && HttpContext.Current.User.Identity != null)
        {
            var contextInfo = new
            {                    
                UserName = HttpContext.Current.User.Identity.Name
            };
            messageTemplate += "{@ContextInfo}";
            properties.Add(contextInfo);
        }

        //serilog log
        Log.Error(ex, messageTemplate, properties.ToArray());
    }
}

然后将错误记录为

      MyLogger.Error(exception,"{@SomeMetadata}",metadata);

这是有效的,但有没有更好的方法将上下文信息包含在serilog

UPDATE1

所以我根据建议创建了一个丰富的

public class HttpContextEnricher: ILogEventEnricher
{
    LogEventProperty _cachedProperty;

    public const string EnvironmentUserNamePropertyName = "UserName";

    public void Enrich(LogEvent logEvent, ILogEventPropertyFactory propertyFactory)
    {
        _cachedProperty = _cachedProperty ?? propertyFactory.CreateProperty(EnvironmentUserNamePropertyName, GetUserName());
        logEvent.AddPropertyIfAbsent(_cachedProperty);
    }

    private string GetUserName()
    {
        if (HttpContext.Current != null && HttpContext.Current.User != null && HttpContext.Current.User.Identity != null)
        {
            return HttpContext.Current.User.Identity.Name;
        }

        return string.Empty;
    }
}

但是我如何调用呢?我应该使用哪种With方法?

  Log.Logger = new LoggerConfiguration()
            .Enrich.With???????
            .ReadFrom.AppSettings()
            .CreateLogger();

更新2
我创建了扩展方法,然后在日志配置期间使用它

public static class HttpContextLoggerConfigurationExtensions
{
    public static LoggerConfiguration WithUserName(
        this LoggerEnrichmentConfiguration enrichmentConfiguration)
    {
        if (enrichmentConfiguration == null) throw new ArgumentNullException(nameof(enrichmentConfiguration));
        return enrichmentConfiguration.With<HttpContextEnricher>();
    }
}

然后在Application_Start事件

中的global.asax中配置记录器
 Log.Logger = new LoggerConfiguration()
            .Enrich.WithUserName()
            .ReadFrom.AppSettings()
            .CreateLogger();

我注意到每次我记录某些内容时,会调用richher并返回UserName,但它不会在日志中记录UserName。我在日志中看到了我的消息,但没有看到UserName属性。我正在使用Windows EventLog Sink

我将信息记录为

       Log.Information("Some message");

,错误为

       Log.Error(exception, "ErrorID={ErrorID}",someid);

我缺少什么?

1 个答案:

答案 0 :(得分:4)

Serilog有几种不同的方法可以做到这一点。您可以使用在应用程序启动时配置的Enricher(配置日志记录时),并在记录消息时自动调用它,并且可以将所需的其他属性添加到日志上下文中。

另一种方法是在每个请求开始时挂钩您的Web应用程序框架调用的事件,然后将属性添加到Log上下文。

另一种方法是在DI容器解析记录器实例的时刻添加上下文属性(如果你正在使用它)。

  • Enricher Samples

https://github.com/serilog-web/owin/blob/master/src/SerilogWeb.Owin/Owin/RequestContextMiddleware.cs

http://sourcebrowser.io/Browse/serilog/serilog/src/Serilog.Extras.Web/Extras/Web/Enrichers/HttpRequestClientHostIPEnricher.cs

  • 上下文PushProperty示例

http://mylifeforthecode.com/enriching-serilog-output-with-httpcontext-information-in-asp-net-core/

  • Autofac Serilog Integration

https://github.com/nblumhardt/autofac-serilog-integration