Serilog.Extensions.Grafana.Loki
7.1.2
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 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 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.
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration.Binder (>= 6.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
- Serilog.Sinks.Grafana.Loki (>= 7.1.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.