Nicholas Blumhardt

Results 936 comments of Nicholas Blumhardt

Hi Luc, thanks for reaching out! Thinking of a few more things that will help us narrow this down - could you please let us know: * Is the outage...

Thanks for the suggestion! We've considered this in the past and essentially agree, it's something we'd love to do at some point. We'll give it some more thought and keep...

Thanks for reporting this @pegasy - definitely a bug here 👍 As a workaround, you can use something like `coalesce(property_that_does_not_exist, '')` to use a placeholder string value for those missing...

This is very similar to datalust/seq-tickets#496, which addresses a similar issue deeper in the ingestion process by converting any floating point too big to fit Seq's underlying `decimal` numeric representation...

This needs deeper work than we can squeeze into the final few days of 2021.3, so moving this out of the milestone for scheduling in our next triage.

There are some substantial hurdles on the server-side that will prevent us from addressing it directly in Seq, but here in _Serilog.Sinks.Seq_, (and we think in the other client libraries,)...

I've put together a large-double-to-string enricher which implements the workaround client-side: ```csharp using System.Diagnostics.CodeAnalysis; using System.Globalization; using Serilog; using Serilog.Core; using Serilog.Debugging; using Serilog.Events; Log.Logger = new LoggerConfiguration() .Enrich.With() .WriteTo.Console()...

Regarding the platform-dependent code, I think it's safe to add `[DllImport]`s as if the code will run on Windows, and then check at runtime whether or not they should be...

Looks like we stalled a bit here unfortunately, so I've just run through and made some minimal/quick updates to line things up with the .NET 6+ style of program/host initialization:...