JudahGabriel / RavenDB.StructuredLog

An ASP.NET Core logger that utilizes RavenDB to store structured logs.
https://www.nuget.org/packages/RavenDB.StructuredLogger
MIT License
12 stars 6 forks source link
aspnetcore logging ravendb structured-logging

RavenDB.StructuredLog

An ASP.NET Core logger that utilizes RavenDB to store structured logs.

Structured log that uses RavenDB as the log store.

Old, ugly way of logging makes for thousands of opaque logs:

But with structured and grouped logging, you get a fewer logs that group similar logs together and makes them searchable:

{
    "MessageTemplate": "User {email} signed in at {date}",
    "Level": "Information",
    "OccurrenceCount": 1032,
    "FirstOccurrence": "2017-09-27T17:29:46.6597966+00:00",
    "LastOccurrence": "2017-09-27T17:39:50.5554997+00:00",
    "Occurrences": [
        {
            "Message": "User foo@bar.com signed in at 5:13 Oct 7",
            "Level": "Information",
            "Created": "2017-09-27T17:39:48.4248681+00:00",
            "Category": "Sample.Controllers.HomeController",
            "EventId": null,
            "TemplateValues": {
                "{OriginalFormat}": "User {email} signed in at {date}",
                "email": "foo@bar.com",
                "date": "5:13 Oct 7"
            }
        },
        {
            "Message": "User no@regerts.com signed in at 2:25 Nov 8",
            "Level": "Information",
            "Created": "2017-09-27T17:39:48.4248681+00:00",
            "Category": "Sample.Controllers.HomeController",
            "EventId": null,
            "TemplateValues": {
                "{OriginalFormat}": "User {email} signed in at {date}",
                "email": "no@regerts.com",
                "date": "2:25 Nov 8"
            }
        }
    ]
}

The end result is humans can easily understand what errors are occurring in your software and how often. Moreover, unlike old school logging where logs are giant opaque strings, structured logs are searchable as their template values are extracted and stored outside the log message.

Instructions

  1. In Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
    // Create your Raven doc store
    var docStore = new DocumentStore { ... };

    // Recommended: 
    // Avoid logging objects that contain self referenced loops.
    // Must be done before .Initialize().
    docStore.IgnoreSelfReferencingLoops();

    docStore.Initialize();

    // Add RavenDB structured logging.
    services.AddRavenStructuredLogger(docStore);  // docStore may be omitted if it's already in the DI container

    ...
}
  1. Use logging as you normally would inside your controllers and services:

    public class HomeController : Controller 
    {
    private ILogger<HomeController> logger;
    
    public HomeController(ILogger<HomeController> logger)
    {
        this.logger = logger;
    }
    
    public string Get()
    {
        // Simple logging
        logger.LogInformation("Hi there!");
    
        // Logging with templates
        logger.LogInformation("The time on the server is {time}.", DateTime.UtcNow);
    
        // Logging exceptions
        logger.LogError(exception, "Woops, an error occurred");
    
        // Logging exceptions with templates
        logger.LogError(exception, "Woops, an error occurred executing {action} at {date}", this.ControllerContext.ActionDescriptor.ActionName, DateTime.UtcNow);
    
        // Logging with scopes
        using (logger.BeginScope(42))
        {
            logger.LogInformation("This message will have forty-two stored with it");
        }
    
        // Logging with multiple scopes and scope templates.
        using (logger.BeginScope(42))
        using (logger.BeginScope("The current user is {user}", User.Identity.Name))
        using (logger.BeginKeyValueScope(nameof(totalCount), totalCount))
        {
            logger.LogInformation("This log will contain forty-two, the current signed in user name, and a key-value pair containing the name of the totalCount variable and its value.");
        }
    
        ...
    }
    }
  2. You're done!

Need help? See the sample app.