A Serilog sink that writes events to Apache CouchDB.
Package - Serilog.Sinks.CouchDB | Platforms - .NET 4.5
You'll need to create a database on your CouchDB server. In the example shown, it is called log
.
var log = new LoggerConfiguration()
.WriteTo.CouchDB("http://mycouchdb/log/")
.CreateLogger();