serilog-sinks-fluentd
serilog-sinks-fluentd copied to clipboard
Changed how log property values are converted in the final output
By using ToString() on the log property values, the final string values end up with double quotes as part of their values. The pull request uses a method that checks the log property value type and returns the correct value. This code is taken from https://github.com/saleem-mirza/serilog-sinks-azure-analytics.
I have also added simple usage info in the README file.
There is one problem with this PR, DateTime is sent incorrectly and that is causing errors on Fluentd side.