I use ASP.NET MVC and serilog, I want to read and view and analyze recorded logs with Serilog in sql server, I find seq that let to add logs to seq like:
Log.Logger = new LoggerConfiguration()
.WriteTo.Seq("http://localhost:5341")
That is perfect I could add the logs to seq and check them. But I want to view and read logs that already stored in Sql server:
var log = new LoggerConfiguration()
.WriteTo.MSSqlServer(connectionString, tableName, columnOptions: columnOptions)
.CreateLogger();
So I already have records in DB, is there any way to read the records in Sql server with seq? or does any one have any idea with another free tool to read the serilog records from sql server?