Serilog.Sinks.PeriodicBatching 4.0.0-dev-00821

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);
    }
}

Showing the top 20 packages that depend on Serilog.Sinks.PeriodicBatching.

Packages Downloads
Microsoft.Extensions.Logging.AzureAppServices
Diagnostics logger for Azure WebApps
15
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
15
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
17
Microsoft.Extensions.Logging.AzureAppServices
Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.
20
Serilog.Sinks.Elasticsearch
Package Description
6
Serilog.Sinks.Seq
A Serilog sink that writes events to Seq using newline-delimited JSON and HTTP/HTTPS.
6
Serilog.Sinks.Seq
Serilog sink that writes to the Seq event server over HTTP/S.
6
Serilog.Sinks.Seq
Serilog sink that writes to the Seq log server over HTTP/HTTPS.
6
Serilog.Sinks.Seq
Serilog sink that writes to the Seq log server over HTTP/HTTPS.
7
Serilog.Sinks.Seq
Serilog sink that writes to the Seq log server over HTTP/S.
6

.NET Framework 4.6.2

.NET 6.0

.NET Standard 2.0

Version Downloads Last updated
5.0.1-dev-00860 16 12.02.2025
5.0.0 18 16.02.2025
5.0.0-dev-00855 16 03.02.2025
4.1.2-dev-00851 18 11.02.2025
4.1.1 16 20.02.2025
4.1.1-dev-00845 16 13.02.2025
4.1.0 16 19.02.2025
4.1.0-dev-00840 17 16.02.2025
4.0.2-dev-00838 16 16.02.2025
4.0.1 17 16.02.2025
4.0.1-dev-00832 17 19.02.2025
4.0.0 17 19.02.2025
4.0.0-dev-00824 17 16.02.2025
4.0.0-dev-00821 17 16.02.2025
3.1.1-dev-00804 16 09.03.2025
3.1.1-dev-00801 15 13.02.2025
3.1.0 19 19.02.2025
3.1.0-dev-00796 17 16.02.2025
3.0.0 20 20.02.2025
3.0.0-dev-00792 17 08.02.2025
2.3.1 17 16.02.2025
2.3.1-dev-00785 19 16.02.2025
2.3.1-dev-00780 19 15.02.2025
2.3.1-dev-00776 16 15.02.2025
2.3.1-dev-00774 16 16.02.2025
2.3.0 17 16.02.2025
2.3.0-dev-00765 16 16.02.2025
2.3.0-dev-00762 17 16.02.2025
2.3.0-dev-00760 20 15.02.2025
2.2.1-dev-00758 16 16.02.2025
2.2.1-dev-00755 17 16.02.2025
2.2.0 20 19.02.2025
2.2.0-dev-00748 20 25.01.2025
2.2.0-dev-00740 16 16.02.2025
2.1.1 17 16.02.2025
2.1.1-dev-00732 16 15.02.2025
2.1.1-dev-00729 16 08.02.2025
2.1.1-dev-00725 16 16.02.2025
2.1.0 18 16.02.2025
2.1.0-dev-00720 16 16.02.2025
2.0.2-dev-00719 19 16.02.2025
2.0.1 19 16.02.2025
2.0.1-dev-00714 17 16.02.2025
2.0.0 20 16.02.2025
2.0.0-rc-707 14 16.02.2025
2.0.0-rc-705 16 16.02.2025
2.0.0-beta-702 14 16.02.2025
2.0.0-beta-700 15 16.02.2025
2.0.0-beta-519 13 16.02.2025
2.0.0-beta-516 17 16.02.2025
2.0.0-beta-513 14 16.02.2025
2.0.0-beta-511 16 16.02.2025
2.0.0-beta-509 14 16.02.2025
2.0.0-beta-507 14 16.02.2025
2.0.0-beta-505 13 16.02.2025
2.0.0-beta-502 13 16.02.2025
2.0.0-beta-499 15 16.02.2025
2.0.0-beta-495 14 15.02.2025
2.0.0-beta-494 14 16.02.2025
2.0.0-beta-493 14 16.02.2025
2.0.0-beta-487 15 16.02.2025
2.0.0-beta-486 13 06.02.2025
2.0.0-beta-479 15 16.02.2025
2.0.0-beta-478 13 18.02.2025
2.0.0-beta-465 14 16.02.2025