Serilog.Sinks.OpenTelemetry 2.0.0-dev-00270

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

// Install Serilog.Sinks.OpenTelemetry as a Cake Tool
#tool nuget:?package=Serilog.Sinks.OpenTelemetry&version=2.0.0-dev-00270&prerelease                

Serilog.Sinks.OpenTelemetry Build status NuGet Version

This Serilog sink transforms Serilog events into OpenTelemetry LogRecords and sends them to an OTLP (gRPC or HTTP) endpoint.

The sink aims for full compliance with the OpenTelemetry Logs protocol. It does not depend on the OpenTelemetry SDK or .NET API.

OpenTelemetry supports attributes with scalar values, arrays, and maps. Serilog does as well. Consequently, the sink does a one-to-one mapping between Serilog properties and OpenTelemetry attributes. There is no flattening, renaming, or other modifications done to the properties by default.

Getting started

To use the OpenTelemetry sink, first install the NuGet package:

dotnet add package Serilog.Sinks.OpenTelemetry

Then enable the sink using WriteTo.OpenTelemetry():

Log.Logger = new LoggerConfiguration()
    .WriteTo.OpenTelemetry()
    .CreateLogger();

Generate logs using the Log.Information(...) and similar methods to send transformed logs to a local OpenTelemetry OTLP endpoint.

A more complete configuration would specify Endpoint, Protocol, and other parameters, such asResourceAttributes, as shown in the examples below.

Configuration

This sink supports two configuration styles: inline and options. The inline configuration looks like:

Log.Logger = new LoggerConfiguration()
    .WriteTo.OpenTelemetry(
        endpoint: "http://127.0.0.1:4318/v1/logs",
        protocol: OtlpProtocol.HttpProtobuf)
    .CreateLogger();

This configuration is appropriate only for simple, local logging setups.

More complicated use cases will need to use the options configuration, which looks like:

Log.Logger = new LoggerConfiguration()
    .WriteTo.OpenTelemetry(options =>
    {
        options.Endpoint = "http://127.0.0.1:4318/v1/logs";
        options.Protocol = OtlpProtocol.HttpProtobuf;
    })
    .CreateLogger();

This supports the sink's full set of configuration options. See the OpenTelemetrySinkOptions.cs file for the full set of options. Some of the more imporant parameters are discussed in the following sections.

Endpoint and protocol

The default endpoint is http://localhost:4317, which will send logs to an OpenTelemetry collector running on the same machine over the gRPC protocol. This is appropriate for testing or for using a local OpenTelemetry collector as a proxy for a downstream logging service.

In most production scenarios, you will want to set an endpoint. To do so, add the endpoint argument to the WriteTo.OpenTelemetry() call.

You may also want to set the protocol explicitly. The supported values are:

  • OtlpProtocol.Grpc: Sends a protobuf representation of the OpenTelemetry Logs over a gRPC connection (the default).
  • OtlpProtocol.HttpProtobuf: Sends a protobuf representation of the OpenTelemetry Logs over an HTTP connection.

When the OtlpProtocol.HttpProtobuf option is specified, the endpoint URL must include the full path, for example http://localhost:4318/v1/logs.

Resource attributes

OpenTelemetry logs may contain a "resource" that provides metadata concerning the entity associated with the logs, typically a service or library. These may contain "resource attributes" and are emitted for all logs flowing through the configured logger.

These resource attributes may be provided as a Dictionary<string, Object> when configuring a logger. OpenTelemetry allows resource attributes with rich values; however, this implementation only supports resource attributes with primitive values.

⚠️ Resource attributes with non-primitive values will be silently ignored.

This example shows how the resource attributes can be specified when the logger is configured.

Log.Logger = new LoggerConfiguration()
    .WriteTo.OpenTelemetry(options =>
    {
        options.Endpoint = "http://127.0.0.1:4317";
        options.ResourceAttributes = new Dictionary<string, object>
        {
            ["service.name"] = "test-logging-service",
            ["index"] = 10,
            ["flag"] = true,
            ["value"] = 3.14
        };
    })
    .CreateLogger();

Serilog LogEvent to OpenTelemetry log record mapping

The following table provides the mapping between the Serilog log events and the OpenTelemetry log records.

Serilog LogEvent OpenTelemetry LogRecord Comments
Exception.GetType().ToString() Attributes["exception.type"]
Exception.Message Attributes["exception.message"] Ignored if empty
Exception.StackTrace Attributes[ "exception.stacktrace"] Value of ex.ToString()
Level SeverityNumber Serilog levels are mapped to corresponding OpenTelemetry severities
Level.ToString() SeverityText
Message Body Culture-specific formatting can be provided via sink configuration
MessageTemplate Attributes[ "message_template.text"] Requires IncludedData. MessageTemplateText (enabled by default)
MessageTemplate (MD5) Attributes[ "message_template.hash.md5"] Requires IncludedData. MessageTemplateMD5 HashAttribute
Properties Attributes Each property is mapped to an attribute keeping the name; the value's structure is maintained
SpanId (Activity.Current) SpanId Requires IncludedData.SpanId (enabled by default)
Timestamp TimeUnixNano .NET provides 100-nanosecond precision
TraceId (Activity.Current) TraceId Requires IncludedData.TraceId (enabled by default)

Configuring included data

This sink supports configuration of how common OpenTelemetry fields are populated from the Serilog LogEvent and .NET Activity context via the IncludedData flags enum:

Log.Logger = new LoggerConfiguration()
    .WriteTo.OpenTelemetry(options =>
    {
        options.Endpoint = "http://127.0.0.1:4317";
        options.IncludedData: IncludedData.MessageTemplate |
                              IncludedData.TraceId | IncludedData.SpanId;
    })
    .CreateLogger();

The example shows the default value; IncludedData.MessageTemplateMD5HashAttribute can also be used to add the MD5 hash of the message template.

Example

The example/Example subdirectory contains an example application that logs to a local OpenTelemetry collector. See the README in that directory for instructions on how to run the example.

Copyright © Serilog Contributors - Provided under the Apache License, Version 2.0.

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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 is compatible.  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 (40)

Showing the top 5 NuGet packages that depend on Serilog.Sinks.OpenTelemetry:

Package Downloads
Sitko.Core.App

Sitko.Core is a set of libraries to help build .NET Core applications fast

MyJetWallet.Sdk.Service

Package Description

Genocs.Logging

The logging library.

SerilogTracing.Sinks.OpenTelemetry

Sends log events and traces to OTLP (gRPC or HTTP) endpoints. This package is obsolete; use Serilog.Sinks.OpenTelemetry v4.x or later instead.

Relativity.Transfer.SDK

Relativity Transfer SDK allows performing high-throughput transfers of files from and to Relativity environment.

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on Serilog.Sinks.OpenTelemetry:

Repository Stars
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
featbit/featbit
Enterprise-grade feature flag platform that you can self-host. Get started - free.
abpframework/abp-samples
Sample solutions built with the ABP Framework
mehdihadeli/food-delivery-microservices
🍔 A practical and imaginary food delivery microservices, built with .Net 8, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
Version Downloads Last updated
4.1.1 841,605 9/24/2024
4.1.1-dev-00356 90 9/24/2024
4.1.1-dev-00351 562 9/18/2024
4.1.0 288,702 9/5/2024
4.1.0-dev-00344 110 9/5/2024
4.1.0-dev-00336 3,680 8/20/2024
4.1.0-dev-00333 835 8/19/2024
4.0.0 471,041 7/28/2024
4.0.0-dev-00325 1,315 7/26/2024
4.0.0-dev-00322 449 7/23/2024
4.0.0-dev-00317 3,474 7/16/2024
4.0.0-dev-00315 1,127 7/12/2024
4.0.0-dev-00313 3,390 6/25/2024
3.0.1-dev-00309 228 6/25/2024
3.0.0 588,044 6/6/2024
3.0.0-dev-00300 126 6/6/2024
3.0.0-dev-00298 26,138 5/8/2024
2.0.0 311,282 5/7/2024
2.0.0-dev-00289 141 5/7/2024
2.0.0-dev-00284 149 5/7/2024
2.0.0-dev-00282 221,521 3/18/2024
2.0.0-dev-00270 25,605 1/4/2024
2.0.0-dev-00261 850 1/2/2024
2.0.0-dev-00259 2,715 12/7/2023
1.2.0 1,580,787 11/15/2023
1.2.0-dev-00255 406 11/15/2023
1.2.0-dev-00253 508 11/9/2023
1.2.0-dev-00247 6,453 10/11/2023
1.2.0-dev-00243 525 10/3/2023
1.1.0 401,970 9/28/2023
1.1.0-dev-00239 492 9/28/2023
1.1.0-dev-00236 884 9/18/2023
1.0.3-dev-00230 5,714 8/24/2023
1.0.2 396,501 7/11/2023
1.0.2-dev-00227 650 7/10/2023
1.0.1 47,938 7/7/2023
1.0.1-dev-00223 638 7/7/2023
1.0.1-dev-00222 631 7/7/2023
1.0.1-dev-00218 6,038 6/13/2023
1.0.0 270,962 6/1/2023
1.0.0-dev-00214 1,559 5/30/2023
1.0.0-dev-00212 1,404 5/29/2023
1.0.0-dev-00208 14,417 5/26/2023
1.0.0-dev-00204 7,288 5/18/2023
1.0.0-dev-00202 1,612 5/17/2023
1.0.0-dev-00200 649 5/17/2023
1.0.0-dev-00194 846 5/15/2023
1.0.0-dev-00192 622 5/15/2023
1.0.0-dev-00188 2,705 5/5/2023
1.0.0-dev-00182 93 5/5/2023
1.0.0-dev-00178 524 5/4/2023
1.0.0-dev-00175 1,178 5/3/2023
1.0.0-dev-00173 1,763 5/2/2023
1.0.0-dev-00166 2,142 5/1/2023
1.0.0-dev-00161 110 4/30/2023
1.0.0-dev-00152 149 4/29/2023
1.0.0-dev-00151 1,039 4/29/2023
1.0.0-dev-00148 103 4/29/2023
1.0.0-dev-00143 4,716 4/24/2023
1.0.0-dev-00142 105 4/24/2023
1.0.0-dev-00141 105 4/24/2023
1.0.0-dev-00129 612 4/19/2023
1.0.0-dev-00128 131 4/19/2023
1.0.0-dev-00121 627 4/14/2023
1.0.0-dev-00120 252 4/14/2023
1.0.0-dev-00117 316 4/12/2023
1.0.0-dev-00113 52,981 3/14/2023
1.0.0-dev-00098 45,361 2/12/2023
1.0.0-dev-00091 137 2/12/2023
1.0.0-dev-00080 137 2/10/2023
0.5.0-dev-00078 1,389 2/9/2023
0.4.0-dev-00073 24,378 2/3/2023
0.2.0-dev-00063 7,319 1/23/2023
0.2.0-dev-00059 229 1/10/2023
0.1.0-dev-00048 122 1/10/2023
0.0.4-dev-00039 54,645 1/9/2023
0.0.3-dev-00036 127 1/9/2023
0.0.2-dev-00027 137 1/7/2023
0.0.1-dev-00018 124 1/4/2023
0.0.1-dev-00015 123 1/3/2023
0.0.1-dev-00013 126 1/3/2023