Stefan Pölz

Results 36 comments of Stefan Pölz

Thanks @prabakaran-ramasamy for the bug report and the reproduction. Do you think this issue is related to #4241, or is it unrelated?

Thanks, @prabakaran-ramasamy, for the follow-up and giving it a try with [5.11.0](https://www.nuget.org/packages/Sentry.Maui/5.11.0). Could you help us investigating this issue even further, and giving it a try with _pre-release_ [5.11.0-alpha.3](https://www.nuget.org/packages/Sentry.Maui/5.11.0-alpha.3). In...

Alongside the existing `ToString` overrides, we could consider implementing the interfaces - `System.ISpanFormattable` - `System.IUtf8SpanFormattable` for `SpanId` and `SentryId`, so that the heap-alloc-free implementation may be idiomatically reused in other...

New/improved features we may want to take a closer look at: - C# 14.0 - see also https://github.com/dotnet/roslyn/blob/main/docs/Language%20Feature%20Status.md - Runtime Async ("async2") - early plan is to preview as experimental...

### Sentry Structured Logging for .NET - [ ] Add Sentry-Logger APIs - See https://develop.sentry.dev/sdk/telemetry/logs/ - [ ] Integration: `Sentry.Extensions.Logging` - public `CaptureLog` on `IHub` and `ISentryClient` - and/or internal...

Thanks @jason-kingsmill for voicing interest! We expect to have an experimental _pre-release_ ready next week, where we would appreciate your early feedback! I'll get back to you here once the...

Not yet. I'm afraid we need a bit more time. The chunks left are "Buffering/Batching" and the `Microsoft.Extensions.Logging`-integration (initially used by `AspNetCore` `Maui`). Both changes are currently under review, where...

Indeed. I was just about to write an update: - Sentry Logs shipped in pre-release [5.12.0-alpha.0](https://github.com/getsentry/sentry-dotnet/releases/tag/5.12.0-alpha.0) - for internal dogfooding ... see Symbol Collector: - getsentry/symbol-collector#236 - getsentry/symbol-collector#238 - you...

Exactly! Also ... no docs, no worries 😉 - `SentryOptions.Experimental.EnableLogs = true;` - enables `SentrySdk.Experimental.Logger.Log..()` to be batched and sent to Sentry - enables `Sentry.Extensions.Logging` integration - and with that...

Yes, via "Attributes" ... the API may change in an upcoming version, though. Through the `SentryLog` instance, provided in the callback, you can call `SentryLog.SetAttribute("key", value)`. "Attributes" are Key-Value-Pairs, with...