Serilog.Sinks.PeriodicBatching 5.0.1-dev-00860

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.

[!IMPORTANT] Serilog 4.x and later versions support batching natively. New projects should use Serilog's IBatchedLogEventSink and WriteTo.Sink(IBatchedLogEventSink), not this package which is now only maintained for compatibility reasons.

Updating for Serilog v4+

First, update your Serilog package reference to the latest published version.

This example is from Serilog.Sinks.Postgresql.Alternative. Old code:

var batchingOptions = new PeriodicBatchingSinkOptions()
{
    BatchSizeLimit = postgresOptions.BatchSizeLimit,
    Period = postgresOptions.Period,
    QueueLimit = postgresOptions.QueueLimit
};

var batchingSink = new PeriodicBatchingSink(new PostgreSqlSink(postgresOptions), batchingOptions);
return sinkConfiguration.Sink(batchingSink, restrictedToMinimumLevel, levelSwitch);

New code:

var batchingOptions = new BatchingOptions()
{
    BatchSizeLimit = postgresOptions.BatchSizeLimit,
    BufferingTimeLimit = postgresOptions.Period,
    QueueLimit = postgresOptions.QueueLimit
};

return sinkConfiguration.Sink(
    new PostgreSqlSink(postgresOptions), batchingOptions, restrictedToMinimumLevel, levelSwitch);

When you're done, don't forget to remove the Serilog.Sinks.PeriodicBatching package dependency.

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
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
36
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
37
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
38
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
39
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
42
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
44
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
46
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
51
Serilog.Sinks.Http
A Serilog sink sending log events over HTTP.
81
Serilog.Sinks.Http
Serilog event sink that sends HTTP POST requests over the network.
36
Serilog.Sinks.Http
Serilog event sink that sends HTTP POST requests over the network.
37
Serilog.Sinks.Http
Serilog event sink that sends HTTP POST requests over the network.
39
Serilog.Sinks.Http
Serilog event sink that sends HTTP POST requests over the network.
40
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
35
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
39
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
42
Serilog.Sinks.PostgreSQL
Serilog sink for writing to PostgreSQL table
333

.NET Framework 4.6.2

.NET Framework 4.7.1

.NET 6.0

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
5.0.1-dev-00860 32 07/18/2024
5.0.0 42 07/22/2024
5.0.0-dev-00855 33 07/23/2024
4.1.2-dev-00851 30 07/23/2024
4.1.1 38 07/23/2024
4.1.1-dev-00845 32 07/23/2024
4.1.0 34 07/23/2024
4.1.0-dev-00840 35 07/23/2024
4.0.2-dev-00838 33 07/23/2024
4.0.1 37 07/23/2024
4.0.1-dev-00832 29 07/23/2024
4.0.0 44 07/23/2024
4.0.0-dev-00824 32 07/23/2024
4.0.0-dev-00821 29 07/23/2024
3.1.1-dev-00804 34 07/21/2024
3.1.1-dev-00801 33 07/23/2024
3.1.0 38 07/23/2024
3.1.0-dev-00796 31 07/23/2024
3.0.0 44 07/23/2024
3.0.0-dev-00792 54 07/23/2024
2.3.1 28 07/23/2024
2.3.1-dev-00785 27 07/23/2024
2.3.1-dev-00780 42 07/23/2024
2.3.1-dev-00776 25 07/23/2024
2.3.1-dev-00774 45 07/23/2024
2.3.0 128 02/04/2024
2.3.0-dev-00765 34 07/23/2024
2.3.0-dev-00762 26 07/23/2024
2.3.0-dev-00760 32 07/23/2024
2.2.1-dev-00758 32 07/23/2024
2.2.1-dev-00755 33 07/23/2024
2.2.0 36 07/23/2024
2.2.0-dev-00748 29 07/23/2024
2.2.0-dev-00740 39 07/22/2024
2.1.1 38 07/21/2024
2.1.1-dev-00732 34 07/23/2024
2.1.1-dev-00729 36 07/23/2024
2.1.1-dev-00725 29 07/23/2024
2.1.0 40 07/23/2024
2.1.0-dev-00720 23 07/23/2024
2.0.2-dev-00719 32 07/23/2024
2.0.1 33 07/23/2024
2.0.1-dev-00714 28 07/23/2024
2.0.0 26 07/23/2024
2.0.0-rc-707 37 07/23/2024
2.0.0-rc-705 33 07/18/2024
2.0.0-beta-702 30 07/18/2024
2.0.0-beta-700 34 07/18/2024
2.0.0-beta-519 35 07/18/2024
2.0.0-beta-516 36 07/18/2024
2.0.0-beta-513 24 07/18/2024
2.0.0-beta-511 26 07/18/2024
2.0.0-beta-509 35 07/18/2024
2.0.0-beta-507 33 07/18/2024
2.0.0-beta-505 36 07/18/2024
2.0.0-beta-502 34 07/18/2024
2.0.0-beta-499 36 07/18/2024
2.0.0-beta-495 25 07/18/2024
2.0.0-beta-494 31 07/18/2024
2.0.0-beta-493 29 07/18/2024
2.0.0-beta-487 32 07/18/2024
2.0.0-beta-486 36 07/18/2024
2.0.0-beta-479 29 07/18/2024
2.0.0-beta-478 31 07/18/2024
2.0.0-beta-465 30 07/18/2024