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

A Sink that writes logs into Fluentd

Results 13 serilog-sinks-fluentd issues
Sort by recently updated
recently updated
newest added

We found a serious memory leak on sending logs to the collector. As the project is dead (no PR accepted in recent years) and because of other serious issues like...

This PR fixes the following problems: 1. #22 2. CPU Usage 100% for a while after massive log outputted. This is our servers memory usages before and after this commit...

Due to the `MessagePackSerializer`, property of nested objects are incorrectly rendered on msgpack: ``` log.LogInformation("this is cool data: {@data}", new {a = new {b = "test"}, c = "contoso", d...

When the server(fluentd) becomes unavailable for a short time, the client does not understand that the tcp-connection is broken and continues to send messages to the void. Why don't you...

The problem which is fixed by this fix is following: the sink truncates fractions of the seconds before sending log items to Fluentd. Using "double" data type instead of "ulong"...

Allows proper modification of the sink

Unconnected servers ( for example shutdown) remains unnoticed by the library. This patch allows discarding connections so the situation can be corrected New options: *ConnectionUsefulPeriod: If this value is set,...

Preface. I'm not a .NET developer but our devs are trying to use this library on some hosts that are .NET Core on both windows and Linux (Docker) based.. works...

This PR fixes the problem with high `RetryCount` values. For example if you set it to 2000-4000 you will get an overflow. On my machine for ` RetryCount = 5000`...