A Serilog sink that writes events to stackify. Stackify is a cloud hosted solution to capture log messages. Register for an account at their website and use the provided GUID in the configuration for Serilog.
Package - Serilog.Sinks.Stackify | Platforms - .NET 4.5
var log = new LoggerConfiguration()
.WriteTo.Stackify()
.CreateLogger();The sink captures all levels, but respect the minimum level configured on LoggerConfiguration. Serilog properties are converted to stackify's jsondata property.
Refer to Stackify's documentation Here for configuration.