Serilog.Sinks.GrafanaLoki 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.GrafanaLoki --version 1.1.1
NuGet\Install-Package Serilog.Sinks.GrafanaLoki -Version 1.1.1
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.GrafanaLoki" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.GrafanaLoki --version 1.1.1
#r "nuget: Serilog.Sinks.GrafanaLoki, 1.1.1"
#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.GrafanaLoki as a Cake Addin
#addin nuget:?package=Serilog.Sinks.GrafanaLoki&version=1.1.1

// Install Serilog.Sinks.GrafanaLoki as a Cake Tool
#tool nuget:?package=Serilog.Sinks.GrafanaLoki&version=1.1.1

Serilog.Sinks.GrafanaLoki

A Serilog Sink for Grafana's Loki Log Aggregator.

.NET Core

What is Loki?

Loki is a horizontally-scalable, highly-available, multi-tenant log aggregation system inspired by Prometheus. It is designed to be very cost effective and easy to operate, as it does not index the contents of the logs, but rather a set of labels for each log stream.

You can find more information about what Loki is over on Grafana's website here.

Features:

  • Timestamps precision at 100ns (lower risk of collision between log entries)
  • Uses the new Loki HTTP API
  • Serilog.Settings.Configuration integration (configure sink via configuration file, JSON sample provided in Example project)
  • Global and contextual labels support
  • Log entries are grouped in Streams by log level and other contextual labels
  • Logs are send to Loki in batches via HTTP using internal client
  • Customizable HTTP client

Installation

The Serilog.Sinks.GrafanaLoki NuGet package can be found here. Alternatively you can install it via one of the following commands below:

NuGet command:

Install-Package Serilog.Sinks.GrafanaLoki

.NET Core CLI:

dotnet add package Serilog.Sinks.GrafanaLoki

Basic Example:

var credentials = new GrafanaLokiCredentials()
{
    User = "<username>",
    Password = "<password>"
};

Log.Logger = new LoggerConfiguration()
    .MinimumLevel.Verbose()
    .Enrich.FromLogContext()
    .Enrich.WithProperty("ALabel", "ALabelValue")
    .WriteTo.GrafanaLoki(
        "http://localhost:3100",
        credentials,
        new Dictionary<string, string>() { { "app", "Serilog.Sinks.GrafanaLoki.Sample" } }, // Global labels
        Events.LogEventLevel.Debug
    )
    .CreateLogger();

Log.Information("Logs are now sent to Loki at address {@Url}.", "http://localhost:3100");

Log.CloseAndFlush();

Adding contextual (local) labels

If you need to add contextual labels from a particular class or method, you can achieve this with the following code:

using (LogContext.PushProperty("ALabel", "ALabelValue"))
{
    log.Information("Info with ALabel");
    log.Warning("Warning with ALabel");
}

Custom HTTP Client

Serilog.Loki.GrafanaLoki uses by default the internal HTTP Client, but you can customize it by implementing the Serilog.Sinks.GrafanaLoki.Common.IHttpClient interface or by extending the Serilog.Sinks.GrafanaLoki.GrafanaLokiHttpClient class.

// CustomHttpClient.cs

public class CustomHttpClient : GrafanaLokiHttpClient
{
    public override async Task<HttpResponseMessage> PostAsync(string requestUri, Stream contentStream)
    {
        using var content = new StreamContent(contentStream);
        content.Headers.Add("Content-Type", "application/json");
        var response = await HttpClient
            .PostAsync(requestUri, content)
            .ConfigureAwait(false);
        return response;
    }
}
// Usage

var credentials = new GrafanaLokiCredentials()
{
    User = "<username>",
    Password = "<password>"
};

Log.Logger = new LoggerConfiguration()
    .MinimumLevel.Verbose()
    .Enrich.FromLogContext()
    .Enrich.WithProperty("ALabel", "ALabelValue")
    .WriteTo.GrafanaLoki(
        url: "http://localhost:3100",
        credentials: credentials,
        httpClient: new CustomHttpClient()
    )
    .CreateLogger();

Using application settings configuration (appsettings.json)

In order to configure this sink using Microsoft.Extensions.Configuration, for example with ASP.NET Core or .NET Core, the package has as dependency the Serilog.Settings.Configuration package. This example is for the JSON configuration file, but it should work fine with any configuration source (.ini, XML etc.) by making the appropriate format changes.

Instead of configuring the sink directly in code, you can make all the configurations in the configuration file and then just call ReadFrom.Configuration() method:

var configuration = new ConfigurationBuilder()
    .AddJsonFile("appsettings.json")
    .Build();

var logger = new LoggerConfiguration()
    .ReadFrom.Configuration(configuration)
    .CreateLogger();

appsettings.json configuration sample:

{
    "Serilog": {
        "WriteTo": [
            {
                "Name": "GrafanaLoki",
                "Args": {
                    "Url": "http://localhost:3100",
                    "Credentials": {
                        "User": "<username>",
                        "Password": "<password>"
                    },
                    "Labels": {
                        "project": "Serilog.Sinks.GrafanaLoki",
                        "app": "Serilog.Sinks.GrafanaLoki.Sample"
                    },
                    "restrictedToMinimumLevel": "Debug",
                    "outputTemplate": "{Timestamp:HH:mm:ss} [{Level:u3}] | {Message:lj} | {Exception:1}",
                    "logEventsInBatchLimit": 1000,
                    "queueLimitBytes": null,
                    "logEventLimitBytes": null,
                    "period": null,
                    "httpRequestTimeout": 3000,
                    "debugMode": true
                }
            }
        ]
    }
}

Excepting the Url, all configuration items are optional.

Inspiration and Credits

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 is compatible. 
.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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.2 5,083 9/30/2023
1.1.1 32,256 7/15/2022
1.1.0 412 7/13/2022
1.0.2 7,499 7/9/2020
1.0.1 485 7/9/2020
1.0.0 573 4/23/2020
1.0.0-beta.1 234 4/22/2020