Nicholas Blumhardt
Nicholas Blumhardt
This should be closer to what you want: ```csharp _logger .ForContext(LogEventLevel.Debug, "jobDetails", jobDetails, destructureObjects: true) .Debug("Created a Job {jobId} for {customer}. Details: {$job}", jobId, customerName, jobDetails); ``` Edit: this uses...
Hi @srogovtsev! I think @CodeBlanch had one of these in the works; I'm not sure where it landed, it may just be waiting to hit the top of the backlog...
I just had a quick poke around, I think the needed API is still `internal` in stable releases but might be available in prerelease packages: https://github.com/open-telemetry/opentelemetry-dotnet/issues/4433
Closing as this isn't something we can implement here in this repo, but feel free to drop a link in here if you build or spot one of these out...
Thanks for the heads-up, @srogovtsev. I implemented this one a while back: https://github.com/serilog/serilog-sinks-opentelemetrysdk - but, it relies on experimental SDK features, and I haven't spent any time at the level...
> how have you verified that nested Maps work as expected My memory is hazy, but I don't know that I've done any validation. IIRC there's work in progress to...
Just a note, you'll need to either use `!important`, or very specific classes, like: ```css body.dark-theme .event .event-columns .property-name.tag-0 { background: white; color: black; } body.light-theme .event .event-columns .property-name.tag-0 {...
Hi again; just revisiting this in triage - the custom CSS approach can work give the `title` attribute that's applied to columns: ```css .event-columns .property-name[title="Origin"] { color: red !important; }...
Done! Thanks to everyone who contributed to this release 😎
Just a note, this is an issue when constructing multiple event log sinks in parallel; a single event log sink is threadsafe. Locking on something `static` in `ConfigureSource()` would resolve...