serilog-sinks-mssqlserver icon indicating copy to clipboard operation
serilog-sinks-mssqlserver copied to clipboard

Links to conference/journal publications in automated fact-checking (resources for the TACL22/EMNLP23 paper).

Results 45 serilog-sinks-mssqlserver issues
Sort by recently updated
recently updated
newest added

Bug Report / Support Request Template -------------------------------------- >> Please clearly describe what the SQL Sink is doing incorrectly: I have set up database logging which works, but my custom column...

Bug Report / Support Request Template -------------------------------------- If you are opening a feature request, you can ignore this template. Bug reports and requests for assistance usually require the same basic...

up-for-grabs

Bug Report / Support Request Template -------------------------------------- If you are opening a feature request, you can ignore this template. Bug reports and requests for assistance usually require the same basic...

Related issiue: https://github.com/serilog-mssql/serilog-sinks-mssqlserver/issues/543#issue-2347936892 Update Serilog v3.1.1 to 4.0.0 [https://github.com/serilog/serilog/releases/tag/v4.0.0](https://github.com/serilog/serilog/releases/tag/v4.0.0) Update Microsoft.Data.SqlClient to 5.2.1 Remove dependency Serilog.Sinks.PeriodicBatching PerioadingBatching moved to BatchingSink in serilog core. [https://github.com/serilog/serilog/pull/2055](https://github.com/serilog/serilog/pull/2055)

Serilog.Sinks.MSSqlServer Library Vulnerabilities (1) Severity: Medium Top Fix: Upgrade to version microsoft.data.sqlclient 5.2.1

From the [Serilog.Sinks.PeriodicBatching readme](https://github.com/serilog/serilog-sinks-periodicbatching): > Serilog 4.x and later versions support batching natively. New projects should use Serilog's `IBatchedLogEventSink` and `WriteTo.Sink(IBatchedLogEventSink)`, not this package which is now only maintained for...

>> Please clearly describe what the SQL Sink is doing incorrectly: custom columns where the property name contains a dot, but isn't hierarchical doesn't seem to get populated. >> Please...

>> Please clearly describe what the SQL Sink is doing incorrectly: If I use the `"autoCreateSqlDatabase": true` setting, the `[TimeStamp]` column is created as `NULL`, although the readme says it's...

>> Please clearly describe what the SQL Sink is doing incorrectly: If I use the `"autoCreateSqlDatabase": true` setting, the `[Level]` column is created as `NVARCHAR (MAX)`, although the readme says...

I have the following configuration with **Serilog.Sinks.MSSqlServer v9.0.02**: ```json "Serilog": { "Using": [ "Serilog.Sinks.MSSqlServer" ], "MinimumLevel": { "Default": "Information" }, "WriteTo": [ { "Name": "MSSqlServer", "Args": { "connectionString": "LogsConnection", "sinkOptionsSection":...