Serilog.Extensions.Grafana.Loki 7.1.2

.NET Standard 2.0
dotnet add package Serilog.Extensions.Grafana.Loki --version 7.1.2
NuGet\Install-Package Serilog.Extensions.Grafana.Loki -Version 7.1.2
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.Extensions.Grafana.Loki" Version="7.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Extensions.Grafana.Loki --version 7.1.2
#r "nuget: Serilog.Extensions.Grafana.Loki, 7.1.2"
#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.Extensions.Grafana.Loki as a Cake Addin
#addin nuget:?package=Serilog.Extensions.Grafana.Loki&version=7.1.2

// Install Serilog.Extensions.Grafana.Loki as a Cake Tool
#tool nuget:?package=Serilog.Extensions.Grafana.Loki&version=7.1.2

Serilog.Extensions.Grafana.Loki

A pointless wrapper to set up Serilog.Sinks.Grafana.Loki with optimal settings in few lines.

Usage

Startup.cs or Program.cs (.NET 6)

using Serilog.Sinks.Grafana.Loki;

.UseSerilog((hostingContext, logger) =>
{
    logger.WriteTo.GrafanaLokiCommonSettings(hostingContext.Configuration, hostingContext.Environment);
})

appsettings.json

{
  "Serilog": {
    "Using":  [ "Serilog.Sinks.Console" ],
    "MinimumLevel": "Verbose",
    "WriteTo": [
      { "Name": "Console" }
    ],
    "Enrich": [ "FromLogContext", "WithMachineName" ]
  },
  "LokiConfig": {
    "Url": "https://my.grafana.loki.server",
    "Credentials": {
      "Login": "username",
      "Password": "password"
    }
  }
}

Example log

_logger.LogInformation("This is a test {time}", DateTimeOffset.Now);

and you will see this in Grafana

[00:17:39 INF] This is a test "2022-06-05T00:17:39.5481985+08:00"
time="06/05/2022 00:17:39 +08:00" SourceContext="WorkerService1.Worker" 

Log labels:
app = WorkerService1
env = Development
host = YOUR_HOST_NAME
level = info

Detected fields:
SourceContext = "WorkerService1.Worker"
time = "06/05/2022 00:17:39 +08:00"
ts = ...
tsNs = ...

Additional Labels

appsettings.json

{
  "LokiConfig": {
    "Url": "",
    "Credentials": {
      "Login": "",
      "Password": ""
    },
    "Labels": {
      "some_key1": "some_value1",
      "some_key2": "some_value2"
    }
  }
}
LokiConfig__Labels__some_key1=some_value1
LokiConfig__Labels__some_key2=some_value2

or you can add service label in code level in Startup.cs or Program.cs

using Serilog.Sinks.Grafana.Loki;

.UseSerilog((hostingContext, logger) =>
{
    logger.WriteTo.GrafanaLokiCommonSettings(hostingContext.Configuration, hostingContext.Environment, "my service name");
})

Full settings

See LokiConfig.cs

{
  "LokiConfig": {
    "Url": "",
    "Credentials": {
      "Login": "",
      "Password": ""
    },
    "Labels": {
    },
    "RestrictedToMinimumLevel": "Verbose",
    "BatchPostingLimit": 1000,
    "QueueLimit": null,
    "Period": null
  }
}
LokiConfig__Url=
LokiConfig__Credentials__Login=
LokiConfig__Credentials__Password=
LokiConfig__RestrictedToMinimumLevel=Verbose
LokiConfig__BatchPostingLimit=1000
LokiConfig__QueueLimit=null
LokiConfig__Period=null

License

MIT

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
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
7.1.2 409 6/4/2022
7.1.1 287 6/4/2022