Nicholas Blumhardt
Nicholas Blumhardt
If it runs, that's as much as we know (no one on the maintenance team currently works on anything targeting Xamarin, that I'm aware of). There haven't been any reported...
`o` is a standard date-time format string (docs.microsoft.com has these) which selects ISO-8601 formatting `u3` controls level formatting, it's "uppercase" "three chars". The only other options here are fewer or...
MEC is a bit tricky at times :thinking: Using _Serilog.Expressions_ and an expression template, through the `formatter` argument: https://github.com/serilog/serilog-settings-configuration/pull/281 will let you switch between [JSON](https://nblumhardt.com/2021/06/customize-serilog-json-output/) and [plain text](https://nblumhardt.com/2021/06/customize-serilog-text-output/) output by...
Thanks for the heads-up, we'll take a closer look 👍
I think in this case it's most likely within the `UseSerilog(...)` callback; another snippet in the README shows this: ```csharp public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .UseSerilog((context, services, loggerConfiguration)...
Hi! We're currently switching maintenance teams and low on bandwidth; if anyone is able to help out by investigating this more deeply/proposing a solution, that would be much appreciated. Thanks!
Hi! This one needs some investigation - it's likely there's a way to mark events as failures that we're not taking advantage of here. Marking up-for-grabs in case someone has...
Hi! Some help investigating more deeply and proposing a solution or documentation updates would be helpful here, if anyone is able to help out?
That looks nice, @dominik-weber - thanks for sharing your setup! We should possibly show something more like this in the README 🤔
Thanks @simbaja for chiming in. It's more that likely that I'm missing something 😅 The only place the sink touches `TelemetryConfiguration.Active` is in the `WriteTo.ApplicationInsights()` configuration methods, but in those...