Rebus.Serilog 8.1.0

dotnet add package Rebus.Serilog --version 8.1.0
                    
NuGet\Install-Package Rebus.Serilog -Version 8.1.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="Rebus.Serilog" Version="8.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rebus.Serilog" Version="8.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Rebus.Serilog" />
                    
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 Rebus.Serilog --version 8.1.0
                    
#r "nuget: Rebus.Serilog, 8.1.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.
#:package Rebus.Serilog@8.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rebus.Serilog&version=8.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Rebus.Serilog&version=8.1.0
                    
Install as a Cake Tool

Rebus.Serilog

install from nuget

Provides a Serilog logging integration for Rebus.

alternate text is missing from this package README image


Do it like this if you just want Rebus to use your global Serilog logger directly:

Configure.With(...)
	.Logging(l => l.Serilog())
	.Transport(t => t.Use(...))
	.(...)
	.Start();

or like this if you want to customize it:

var logger = Log.ForContext("queue", queueName);

Configure.With(...)
	.Logging(l => l.Serilog(logger))
	.Transport(t => t.Use(..., queueName))
	.(...)
	.Start();

Initialize your Serilog logging with Rebus' correlation ID enricher if you'd like the correlation ID of handled messages to be added automatically to all log output generated from message handlers:

Log.Logger = new LoggerConfiguration()
    .WriteTo.(...)
    .Enrich.WithRebusCorrelationId("CorrelationId")
    .CreateLogger();

and then either use real structured logging (e.g. to an aggregator like Elastic), or remember to include it in your output template (here shown with ColoredConsole):

//                                                                                  👇
Log.Logger = new LoggerConfiguration()
	.WriteTo.ColoredConsole(outputTemplate: "{Timestamp:HH:mm:ss} {Level:u3} ({CorrelationId}) {Message}{NewLine}{Exception}")
	.(...)
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.  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 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 (9)

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

Package Downloads
Fans.DependencyInjection

Package Description

Rebus.AzureServiceBus.RebusPerQueueTopic

Rebus.AzureServiceBus rewrite enabling us following: 1- Minimal usage for topic/queues even in one-way/two-way communication between Rebus/Masstransit libraries 2- Skipped implementation of Sagas, this library is working statelessly. 3- Each topic/queue subscription is living on its own Rebus instance 4- Health checking of each topic/queue subscription 5- Full control on Queue/Topic/Topic Subscription naming 6- For development environment you have an option of: you can prefix all queue/topic names starting with the machine name; this enables me to seperate my queues and application from another guy working on the same project since my queues are created like "oguzhan/queue1" whereas the other guy's "otherguy/queue1" 7- For topic subscribing, you have the option of whether you will need multiple node subscription or not. If enabled, for topic "Topic1" and subscription name of "sub", it will create "Topic1/sub-node1" whereas "node1" is the docker container name. 8- In masstransit you have the limitation of each message is transported with its full namespace. If you move its namespace or change class name, MT will not consume the message. This was an annoying issue for all of us in the company. We are free from this issue thanks to Rebus. 9- Brotli compression of transport message body, so expanding default 256kb limitation of Azure Servicebus to many more.

Vedaantees.Framework.Providers

Providers implementation for the framework.

SuperiorAcumaticaPackage

Dependencies required to compile the SuperiorAcumaticaSolution for Acumatica 2025 R1 Build 25.101.0153

GAPD.Common.Event

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Rebus.Serilog:

Repository Stars
rebus-org/RebusSamples
Small sample projects
Version Downloads Last Updated
8.1.0 11,485 8/17/2025
8.0.0 3,744,806 11/15/2023
8.0.0-alpha02 1,922 8/2/2023
8.0.0-alpha01 740 3/29/2023
7.0.0 2,365,209 2/1/2022
6.0.0 1,398,219 2/11/2020
5.0.0 556,433 10/8/2018
4.0.0 2,510,348 8/15/2017
4.0.0-b04 1,951 5/18/2017
4.0.0-b03 1,125 5/15/2017
4.0.0-b02 1,102 3/21/2017
4.0.0-b01 1,066 3/21/2017
3.0.0 29,240 1/5/2017
2.0.0 4,159 9/20/2016
2.0.0-b02 1,115 9/12/2016
2.0.0-b01 1,111 9/9/2016
2.0.0-a2 1,099 9/6/2016
2.0.0-a1 1,109 9/1/2016
0.99.74 2,904 8/29/2016
0.99.73 1,759 8/12/2016
0.99.72 1,480 8/4/2016
0.99.71 1,617 8/3/2016
0.99.70 1,523 7/29/2016
0.99.68 1,471 7/18/2016
0.99.67 1,467 7/1/2016
0.99.66 1,483 6/28/2016
0.99.65 1,370 6/23/2016
0.99.64 1,368 6/22/2016
0.99.63 1,394 6/21/2016
0.99.62 1,723 6/17/2016
0.99.61 1,483 6/17/2016
0.99.60 1,478 6/15/2016
0.99.59 1,618 6/3/2016
0.99.58 1,581 5/24/2016
0.99.57 1,456 5/22/2016
0.99.56 1,366 5/22/2016
0.99.55 1,538 5/16/2016
0.99.54 1,393 5/12/2016
0.99.53 1,380 5/12/2016
0.99.52 1,409 5/11/2016
0.99.51 1,387 5/9/2016
0.99.50 1,558 4/13/2016
0.99.48 1,439 4/6/2016
0.99.47 1,460 3/31/2016
0.99.46 1,379 3/30/2016
0.99.45 1,417 3/29/2016
0.99.44 1,410 3/26/2016
0.99.43 1,393 3/26/2016
0.99.42 1,385 3/22/2016
0.99.41 1,387 3/17/2016
0.99.40 1,413 3/15/2016
0.99.39 1,399 3/14/2016
0.99.38 1,408 3/9/2016
0.99.37 1,371 3/9/2016
0.99.36 1,439 3/3/2016
0.99.35 1,551 2/22/2016
0.99.34 1,412 2/19/2016
0.99.33 1,738 2/12/2016
0.99.32 1,473 2/10/2016
0.99.31 1,435 2/8/2016
0.99.30 1,375 2/5/2016
0.99.29 2,015 2/2/2016
0.99.27 1,385 1/28/2016
0.99.26 1,362 1/27/2016
0.99.25 1,412 1/22/2016
0.99.24 1,477 1/18/2016
0.99.23 1,517 12/18/2015
0.99.22 1,392 12/18/2015
0.99.21 1,610 12/11/2015
0.99.20 1,602 12/10/2015
0.99.19 1,409 12/8/2015
0.99.18 1,380 12/7/2015
0.99.17 1,404 12/7/2015
0.99.16 1,765 11/30/2015
0.99.14 1,600 11/24/2015
0.99.13 1,486 11/23/2015
0.99.12 1,491 11/17/2015
0.99.11 1,468 11/17/2015
0.99.10 1,488 11/11/2015
0.99.9 1,424 11/5/2015
0.99.8 1,398 11/5/2015
0.99.7 1,419 10/29/2015
0.99.5 1,411 10/27/2015
0.99.4 1,388 10/27/2015
0.99.2 1,412 10/12/2015
0.99.1 1,603 10/8/2015
0.99.0 1,546 10/7/2015
0.98.12 1,513 9/17/2015
0.98.11 1,448 9/17/2015
0.98.10 1,490 9/16/2015
0.98.9 1,489 9/14/2015
0.98.8 1,452 9/13/2015
0.98.7 1,465 9/9/2015
0.98.6 1,417 9/7/2015
0.98.5 1,425 9/3/2015
0.98.4 1,408 9/3/2015
0.98.3 1,447 9/1/2015
0.98.2 1,469 8/27/2015
0.98.0 1,467 8/26/2015
0.97.0 1,483 8/25/2015
0.96.0 1,458 8/24/2015
0.95.0 1,421 8/20/2015
0.94.0 1,481 8/19/2015
0.93.0 1,455 8/19/2015
0.92.4 1,456 8/17/2015
0.92.3 1,885 8/13/2015
0.92.2 1,934 8/12/2015
0.92.1 2,065 8/12/2015
0.92.0 1,788 8/11/2015
0.91.0 1,737 8/11/2015
0.90.9 1,582 8/10/2015
0.90.8 1,632 8/9/2015
0.90.7 1,728 8/5/2015
0.90.6 1,698 8/4/2015
0.90.5 1,683 8/4/2015
0.90.4 1,626 8/2/2015
0.90.3 1,618 8/2/2015
0.90.2 1,593 7/31/2015
0.90.1 1,558 7/29/2015
0.90.0 1,582 7/29/2015
0.84.0 1,988 5/15/2015
0.83.0 2,794 4/20/2015
0.82.1 2,298 4/16/2015
0.82.0 1,543 3/19/2015
0.81.0 1,566 3/12/2015
0.80.1 1,489 3/5/2015
0.80.0 1,984 2/19/2015
0.79.0 1,469 2/6/2015
0.78.2 1,455 2/6/2015
0.78.1 1,488 2/5/2015
0.78.0 1,586 1/29/2015
0.77.1 1,480 1/23/2015
0.77.0 1,443 1/15/2015
0.76.0 1,422 1/15/2015
0.75.2 1,507 1/3/2015
0.75.1 1,762 12/21/2014
0.75.0 1,662 12/2/2014
0.74.1 1,613 12/2/2014
0.74.0 1,620 11/30/2014
0.73.0 1,991 11/6/2014
0.72.0 1,719 11/5/2014
0.71.4 1,492 10/29/2014
0.71.3 1,568 10/20/2014
0.71.2 1,462 9/30/2014
0.71.1 1,473 9/19/2014
0.71.0 1,557 8/7/2014
0.70.3 1,540 8/4/2014
0.70.2 1,547 7/31/2014
0.70.1 1,542 7/17/2014
0.69.0 1,593 6/17/2014
0.68.0 1,589 6/5/2014
0.67.0 1,558 5/20/2014
0.66.0 2,143 5/9/2014