Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.4 KB

README.md

File metadata and controls

33 lines (20 loc) · 1.4 KB

Serilog.Sinks.Logzio

Build status NuGet Version Documentation Join the chat at https://gitter.im/serilog/serilog Help

A Serilog sink that sends HTTP POST requests over the network.

Package - Serilog.Sinks.Logzio | Platforms - .NET 4.5, .NETStandard 1.5

Getting started

TBA

Serilog.ILogger log = new LoggerConfiguration()
  .MinimumLevel.Verbose()
  .WriteTo.Http("www.mylogs.com")
  .CreateLogger();

Typical use case

TBA

Install via NuGet

If you want to include the HTTP POST sink in your project, you can install it directly from NuGet.

To install the sink, run the following command in the Package Manager Console:

PM> Install-Package Serilog.Sinks.Logzio