cocowalla / serilog-sinks-file-gzip

Plugin for the Serilog File sink that compresses output using streaming GZIP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Serilog.Sinks.File.GZip

NuGet Build status

A FileLifecycleHooks-based plugin for the Serilog File Sink that compresses log files using streaming GZip compression.

Getting started

To get started, install the latest Serilog.Sinks.File.GZip package from NuGet:

Install-Package Serilog.Sinks.File.GZip -Version 1.0.2

To enable GZip compression, use one of the new LoggerSinkConfiguration extensions that has a FileLifecycleHooks argument, and create a new GZipHooks:

Log.Logger = new LoggerConfiguration()
    .WriteTo.File("log.gz", hooks: new GZipHooks())
    .CreateLogger();

Note this also works if you enable rolling log files.

You can optionally tweak GZIP compression by changing the log level and buffer size (the default is 32KB):

Log.Logger = new LoggerConfiguration()
    .WriteTo.File("log.gz", hooks: new GZipHooks(CompressionLevel.Fastest, 1024 * 64))
    .CreateLogger();

It's also possible to enable GZIP compression when configuring Serilog from a configuration file using Serilog.Settings.Configuration:

{
  "Serilog": {
    "WriteTo": [
      {
        "Name": "File",
        "Args": {
          "path": "log.gz",
          "hooks": "Serilog.Sinks.File.GZip.GZipHooks, Serilog.Sinks.File.GZip"
        }
      }
    ]
  }
}

Larger buffer sizes potentially result in better compression ratios, but note that in the event of a crash that the contents of the buffer may be lost.

As is standard with Serilog, it's important to call Log.CloseAndFlush(); before your application ends.

About FileLifecycleHooks

FileLifecycleHooks is a Serilog File Sink mechanism that allows hooking into log file lifecycle events, enabling scenarios such as wrapping the Serilog output stream in another stream, or capturing files before they are deleted by Serilog's retention mechanism.

Other available hooks include:

About

Plugin for the Serilog File sink that compresses output using streaming GZIP

License:Apache License 2.0


Languages

Language:C# 93.1%Language:Shell 3.5%Language:Batchfile 3.4%