Serilog.Sinks.PeriodicBatching 4.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Serilog.Sinks.PeriodicBatching --version 4.0.1
NuGet\Install-Package Serilog.Sinks.PeriodicBatching -Version 4.0.1
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.PeriodicBatching" Version="4.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.PeriodicBatching --version 4.0.1
#r "nuget: Serilog.Sinks.PeriodicBatching, 4.0.1"
#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.PeriodicBatching as a Cake Addin
#addin nuget:?package=Serilog.Sinks.PeriodicBatching&version=4.0.1

// Install Serilog.Sinks.PeriodicBatching as a Cake Tool
#tool nuget:?package=Serilog.Sinks.PeriodicBatching&version=4.0.1

Serilog.Sinks.PeriodicBatching Build status NuGet Version

A wrapper for Serilog sinks that asynchronously emits events in batches, useful when logging to a slow and/or remote target.

Getting started

Sinks that, for performance reasons, need to emit events in batches, can be implemented using PeriodicBatchingSink from this package.

First, install the package into your Sink project:

dotnet add package Serilog.Sinks.PeriodicBatching

Then, instead of implementing Serilog's ILogEventSink, implement IBatchedLogEventSink in your sink class:

class ExampleBatchedSink : IBatchedLogEventSink
{
    public async Task EmitBatchAsync(IEnumerable<LogEvent> batch)
    {
        foreach (var logEvent in batch)
            Console.WriteLine(logEvent);
    }
    
    public Task OnEmptyBatchAsync() { }
}

Finally, in your sink's configuration method, construct a PeriodicBatchingSink that wraps your batched sink:

public static class LoggerSinkExampleConfiguration
{
    public static LoggerConfiguration Example(this LoggerSinkConfiguration loggerSinkConfiguration)
    {
        var exampleSink = new ExampleBatchedSink();
        
        var batchingOptions = new PeriodicBatchingSinkOptions
        {
            BatchSizeLimit = 100,
            Period = TimeSpan.FromSeconds(2),
            EagerlyEmitFirstEvent = true,
            QueueLimit = 10000
        };
        
        var batchingSink = new PeriodicBatchingSink(exampleSink, batchingOptions);
        
        return loggerSinkConfiguration.Sink(batchingSink);
    }
}
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. 
.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 (258)

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

Package Downloads
Serilog.Sinks.Elasticsearch

Serilog sink for Elasticsearch

Serilog.Sinks.Seq

A Serilog sink that writes events to Seq using newline-delimited JSON and HTTP/HTTPS.

Serilog.Sinks.MSSqlServer

A Serilog sink that writes events to Microsoft SQL Server and Azure SQL

Serilog.Sinks.Datadog.Logs

Serilog Sink that sends log events to Datadog https://www.datadoghq.com/

Serilog.Sinks.AwsCloudWatch

A Serilog sink that logs to AWS CloudWatch

GitHub repositories (13)

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

Repository Stars
dotnetcore/DotnetSpider
DotnetSpider, a .NET standard web crawling library. It is lightweight, efficient and fast high-level web crawling & scraping framework
chocolatey/ChocolateyGUI
A delicious GUI for Chocolatey
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
DaxStudio/DaxStudio
DAX Studio is a tool to write, execute, and analyze DAX queries in Power BI Desktop, Power Pivot for Excel, and Analysis Services Tabular.
serilog-contrib/serilog-sinks-elasticsearch
A Serilog sink that writes events to Elasticsearch
Version Downloads Last updated
4.0.1 1,368 3/15/2024
4.0.1-dev-00832 63 3/14/2024
4.0.0 75,391 2/22/2024
4.0.0-dev-00824 1,538 2/2/2024
4.0.0-dev-00821 14,088 1/1/2024
3.1.1-dev-00804 4,636 4/15/2023
3.1.1-dev-00801 8,579 9/27/2022
3.1.0 25,612,595 9/27/2022
3.1.0-dev-00796 1,667 9/15/2022
3.0.0 4,257,582 9/13/2022
3.0.0-dev-00792 1,287 9/12/2022
2.3.1 7,469,299 1/7/2022
2.3.1-dev-00785 763 1/7/2022
2.3.1-dev-00780 26,262 1/6/2021
2.3.1-dev-00776 4,062 7/23/2020
2.3.1-dev-00774 1,689 6/1/2020
2.3.0 58,727,948 2/28/2020
2.3.0-dev-00765 1,417 2/17/2020
2.3.0-dev-00762 144,853 2/16/2020
2.3.0-dev-00760 34,890 2/14/2020
2.2.1-dev-00758 1,176 2/13/2020
2.2.1-dev-00755 21,197 7/10/2019
2.2.0 19,571,973 5/2/2019
2.2.0-dev-00748 1,426 5/2/2019
2.2.0-dev-00740 4,478 1/28/2019
2.1.1 100,023,300 6/20/2017
2.1.1-dev-00732 1,712 6/20/2017
2.1.1-dev-00729 4,437 3/13/2017
2.1.1-dev-00725 181,712 10/26/2016
2.1.0 11,509,272 10/25/2016
2.1.0-dev-00720 2,238 9/29/2016
2.0.2-dev-00719 1,596 9/28/2016
2.0.1 344,887 9/20/2016
2.0.1-dev-00714 2,080 9/12/2016
2.0.0 5,573,872 6/27/2016
2.0.0-rc-707 6,162 5/17/2016
2.0.0-rc-705 1,674 5/17/2016
2.0.0-beta-702 1,709 4/20/2016
2.0.0-beta-700 4,712 3/23/2016
2.0.0-beta-519 1,853 3/16/2016
2.0.0-beta-516 1,613 3/15/2016
2.0.0-beta-513 1,593 3/15/2016
2.0.0-beta-511 1,585 3/14/2016
2.0.0-beta-509 1,561 3/13/2016
2.0.0-beta-507 1,877 3/1/2016
2.0.0-beta-505 4,666 2/25/2016
2.0.0-beta-502 1,726 2/22/2016
2.0.0-beta-499 1,726 2/21/2016
2.0.0-beta-495 1,622 2/19/2016
2.0.0-beta-494 1,612 2/18/2016
2.0.0-beta-493 1,590 2/18/2016
2.0.0-beta-487 1,761 2/16/2016
2.0.0-beta-486 1,828 2/11/2016
2.0.0-beta-479 1,697 2/9/2016
2.0.0-beta-478 1,671 2/9/2016
2.0.0-beta-465 3,442 1/26/2016