Serilog.Sinks.LogBee.AspNetCore 1.0.3

dotnet add package Serilog.Sinks.LogBee.AspNetCore --version 1.0.3
NuGet\Install-Package Serilog.Sinks.LogBee.AspNetCore -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Serilog.Sinks.LogBee.AspNetCore" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.LogBee.AspNetCore --version 1.0.3
#r "nuget: Serilog.Sinks.LogBee.AspNetCore, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Serilog.Sinks.LogBee.AspNetCore as a Cake Addin
#addin nuget:?package=Serilog.Sinks.LogBee.AspNetCore&version=1.0.3

// Install Serilog.Sinks.LogBee.AspNetCore as a Cake Tool
#tool nuget:?package=Serilog.Sinks.LogBee.AspNetCore&version=1.0.3

Serilog.Sinks.LogBee.AspNetCore

A Serilog sink for web applications that writes events to logBee.net.

Documentation

Basic usage

using Serilog;
using Serilog.Sinks.LogBee;
using Serilog.Sinks.LogBee.AspNetCore;

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddHttpContextAccessor();
builder.Services.AddControllersWithViews();

builder.Services.AddSerilog((services, lc) => lc
    .WriteTo.LogBee(
        new LogBeeApiKey("_OrganizationId_", "_ApplicationId_", "https://api.logbee.net"),
        services
    ));

var app = builder.Build();

app.MapGet("/", (ILogger<Program> logger) =>
{
    logger.LogInformation("My favourite cartoon is {Name}", "Futurama");
    return "Hello";
});

app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

// Important: register the LogBeeMiddleware() just before app.Run()
app.UseLogBeeMiddleware();

app.Run();

Saving the logs

The Serilog.Sinks.LogBee.AspNetCore Sink stores all the events in the current http request (connection).

At the end of the request, the stored events are sent automatically to the logBee endpoint specified in the Sink configuration.

In addition to the log events, the LogBee Serilog Sink also collects all the HTTP properties of the current execution request.

Important: Make sure you register the LogBee middleware by calling app.UseLogBeeMiddleware() before the app.Run()

Configuration

Additional LogBee Serilog Sink configuration can be provided using the config parameter.

var builder = WebApplication.CreateBuilder(args);

builder.Services.AddSerilog((services, lc) => lc
    .Enrich.WithCorrelationId()
    .WriteTo.LogBee(
        new LogBeeApiKey("_OrganizationId_", "_ApplicationId_", "https://api.logbee.net"),
        services,
        config =>
        {
            config.ShouldReadRequestHeader = (request, header) =>
            {
                // we don't want to log sensitive Header value
                if (string.Equals(header.Key, "X-Api-Key", StringComparison.OrdinalIgnoreCase))
                    return false;

                return true;
            };

            // handler used to determine if a Request should be saved to logBee endpoint or not
            config.ShouldLogRequest = (context) =>
            {
                if (string.Equals(context.Request.Path, "/status/healthcheck", StringComparison.OrdinalIgnoreCase)
                        && context.Response.StatusCode < 400)
                {
                    return false;
                }

                return true;
            };

            config.AppendExceptionDetails = (ex) =>
            {
                if (ex is NullReferenceException nullRefEx)
                    return "Don't forget to check for null references";

                return null;
            };

            config.RequestKeywords = (context) =>
            {
                var keywords = new List<string>();
                if (context.Items.TryGetValue("CorrelationIdEnricher+CorrelationId", out var value)
                        && value is string correlationId)
                {
                    // add the Serilog CorrelationId as a search keyword
                    keywords.Add(correlationId);
                }

                return keywords;
            };
        }
    ));

Logging files

With Serilog.Sinks.LogBee.AspNetCore you can log string content as files.

In order to do so, you need to access the LoggerContext by using the HttpContext.GetLogBeeLoggerContext() extension method.

public class HomeController : Controller
{
    public IActionResult Index()
    {
        var loggerContext = HttpContext.GetLogBeeLoggerContext();
        loggerContext?.LogAsFile(JsonSerializer.Serialize(new
        {
            eventCode = "AUTHORISATION",
            amount = new
            {
                currency = "USD",
                value = 12
            }
        }), "Event.json");

        return View();
    }
}

<table><tr><td> <img alt="Request Files tab" src="https://github.com/logBee-net/serilog-sinks-logbee/assets/39127098/d60dca14-91c7-4e4c-bda8-a42605a62d9c" /> </td></tr></table>

<table><tr><td> <img alt="Request File preview" src="https://github.com/logBee-net/serilog-sinks-logbee/assets/39127098/028c27fb-5cb8-4c90-99a4-3009e5f0197d" /> </td></tr></table>

Examples

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Serilog.Sinks.LogBee.AspNetCore:

Package Downloads
SLS.TRACKER.LOGGER

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 127 4/27/2024
1.0.2 85 4/25/2024
1.0.1 96 4/21/2024
1.0.0 83 4/21/2024