Serilog.Enrichers.Thread 4.0.0

Prefix Reserved
dotnet add package Serilog.Enrichers.Thread --version 4.0.0
                    
NuGet\Install-Package Serilog.Enrichers.Thread -Version 4.0.0
                    
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.Enrichers.Thread" Version="4.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog.Enrichers.Thread" Version="4.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Serilog.Enrichers.Thread" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Serilog.Enrichers.Thread --version 4.0.0
                    
#r "nuget: Serilog.Enrichers.Thread, 4.0.0"
                    
#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.
#addin nuget:?package=Serilog.Enrichers.Thread&version=4.0.0
                    
Install Serilog.Enrichers.Thread as a Cake Addin
#tool nuget:?package=Serilog.Enrichers.Thread&version=4.0.0
                    
Install Serilog.Enrichers.Thread as a Cake Tool

Serilog.Enrichers.Thread Build status NuGet Version

Enrich Serilog events with properties from the current thread.

Getting started

Install the package from NuGet:

Install-Package Serilog.Enrichers.Thread

In your logger configuration, apply Enrich.WithThreadId() and Enrich.WithThreadName():

Log.Logger = new LoggerConfiguration()
    .Enrich.WithThreadId()
    .Enrich.WithThreadName()
    .CreateLogger();

Many sinks simply include all properties without further action required, so the thread id will be logged automatically. However, some sinks, such as the File and Console sinks use an output template and the new ThreadId may not be automatically output in your sink. In this case, in order for the ThreadId or ThreadName to show up in the logging, you will need to create or modify your output template.

w.File(...., outputTemplate:
  "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj} {Properties}{NewLine}{Exception}")

Here, {Properties} can include not only ThreadId and ThreadName, but any other enrichment which is applied. Alternatively, {ThreadId} could be used instead, if you want to only add the thread id enrichment and {ThreadName}, if you want to only add the thread name enrichment.

An example, which also uses the Serilogs.Sinks.Async Nuget package, is below:

            Thread.CurrentThread.Name = "MyWorker";
              
            var logger = Log.Logger = new LoggerConfiguration()
                 .MinimumLevel.Debug()
                 .WriteTo.Console(restrictedToMinimumLevel:Serilog.Events.LogEventLevel.Information)
                 .WriteTo.Async(w=>w.File("..\\..\\..\\..\\logs\\SerilogLogFile.json", rollingInterval: RollingInterval.Day, outputTemplate: "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {Message:lj} <{ThreadId}><{ThreadName}>{NewLine}{Exception}"))
                 .Enrich.WithThreadId()
                 .CreateLogger();

Which would produce an output in the log file as follows:

2018-04-06 13:12:45.684 +02:00 [ERR] The file file_name.svg does not exist <4><MyWorker>

Where, <4> is an example thread id and <MyWorker> is an example thread name.

To use the enricher, first install the NuGet package:

Install-Package Serilog.Enrichers.Thread

Note: The {ThreadName} property will only be attached when it is not null. Otherwise it will be omitted. If you want to get this property always attached you can use the following:

using Serilog.Enrichers;

Log.Logger = new LoggerConfiguration()
    .Enrich.WithThreadName()
    .Enrich.WithProperty(ThreadNameEnricher.ThreadNamePropertyName, "MyDefault")
    .CreateLogger();

The enrichment order is important. Otherwise "MyDefault" would always win.

Copyright © 2016 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 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.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 is compatible.  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 (310)

Showing the top 5 NuGet packages that depend on Serilog.Enrichers.Thread:

Package Downloads
Umbraco.Cms.Infrastructure

Contains the infrastructure assembly needed to run Umbraco CMS.

IppDotNetSdkForQuickBooksApiV3

The IPP .NET SDK for QuickBooks V3 is a set of .NET classes that make it easier to call QuickBooks APIs. This is the .Net Standard 2.0 version of the .Net SDK

UmbracoCms.Core

Contains the core assemblies needed to run Umbraco Cms. This package only contains assemblies and can be used for package development. Use the UmbracoCms package to setup Umbraco in Visual Studio as an ASP.NET project.

NBomber

Modern and flexible load testing framework for Pull and Push scenarios, designed to test any system regardless a protocol (HTTP/WebSockets/AMQP etc) or a semantic model (Pull/Push).

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

GitHub repositories (64)

Showing the top 20 popular GitHub repositories that depend on Serilog.Enrichers.Thread:

Repository Stars
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
kurrent-io/KurrentDB
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
BililiveRecorder/BililiveRecorder
录播姬 | mikufans 生放送录制
skoruba/IdentityServer4.Admin
The administration for the IdentityServer4 and Asp.Net Core Identity
Dotnet-Boxed/Templates
.NET project templates with batteries included, providing the minimum amount of code required to get you going faster.
Belphemur/SoundSwitch
C# application to switch default playing device. Download: https://soundswitch.aaflalo.me/
dotnet/macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
github/VisualStudio
GitHub Extension for Visual Studio
sjdirect/abot
Cross Platform C# web crawler framework built for speed and flexibility. Please star this project! +1.
iammukeshm/CleanArchitecture.WebApi
An implementation of Clean Architecture for ASP.NET Core 3.1 WebAPI. Built with loosely coupled architecture and clean-code practices in mind.
alxnbl/onenote-md-exporter
ConsoleApp to export OneNote notebooks to Markdown formats
SteeltoeOSS/Steeltoe
.NET Components for Externalized Configuration, Database Connectors, Service Discovery, Logging and Distributed Tracing, Application Management, Security, and more.
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
Aguafrommars/TheIdServer
OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI
ikpil/DotRecast
DotRecast - a port of Recast & Detour, Industry-standard navigation mesh toolset for .NET, C#, Unity3D, games, servers
Version Downloads Last updated
4.0.0 14,079,521 6/14/2024
4.0.0-dev-00770 227 6/14/2024
4.0.0-dev-00767 213 6/14/2024
4.0.0-dev-00762 203 6/14/2024
3.2.0-dev-00756 248,624 11/14/2023
3.2.0-dev-00752 793,701 5/11/2021
3.2.0-dev-00750 3,891,131 2/26/2021
3.2.0-dev-00747 803,107 9/2/2019
3.1.1-dev-00745 65,611 6/2/2019
3.1.1-dev-00743 5,148 5/8/2019
3.1.0 105,834,269 5/2/2019
3.1.0-dev-00739 813 5/2/2019
3.0.1-dev-00737 11,545 2/24/2019
3.0.1-dev-00731 1,586 2/8/2019
3.0.1-dev-00728 32,866 5/9/2018
3.0.1-dev-00727 7,254 4/6/2018
3.0.0 10,687,898 11/13/2016
3.0.0-dev-00721 1,725 11/11/2016
2.0.1-dev-00720 1,216 11/11/2016
2.0.0 341,548 6/28/2016
2.0.0-rc-712 1,577 5/27/2016
2.0.0-beta-705 1,373 5/17/2016
2.0.0-beta-701 1,355 4/11/2016
2.0.0-beta-700 1,545 3/23/2016
2.0.0-beta-521 1,211 3/18/2016
2.0.0-beta-519 1,327 3/16/2016
2.0.0-beta-516 1,202 3/15/2016
2.0.0-beta-515 1,172 3/15/2016
2.0.0-beta-513 1,188 3/15/2016
2.0.0-beta-511 1,235 3/14/2016
2.0.0-beta-509 1,347 3/13/2016
2.0.0-beta-507 1,534 3/1/2016
2.0.0-beta-505 1,559 2/25/2016
2.0.0-beta-502 1,269 2/22/2016
2.0.0-beta-499 1,202 2/21/2016