Stefan Jandl

Results 91 issues of Stefan Jandl

The `MainExceptionProcessor` handles setting the mechanism here: https://github.com/getsentry/sentry-dotnet/blob/c30052e99d981aec3d6ff1bda42c3395a2376fe7/src/Sentry/Internal/MainExceptionProcessor.cs#L177-L188 So this code ends up with `Handled = true` ``` try { throw new Exception(); } catch (Exception ex) { // will...

Good First Issue
Product: Release Health
Enhancement

TLDR; When dropping a transaction, also report the spans that got dropped too. Context: https://github.com/getsentry/team-sdks/issues/88

Based on the [.NET Docs](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options?pivots=dotnet-8-0#root-assemblies): `If an assembly is not trimmed, it's considered "rooted", which means that it and all of its statically understood dependencies will be kept. Additional assemblies...

Create OOTB support for our caches module: https://develop.sentry.dev/sdk/performance/modules/caches/ - [Output caching middlware](https://learn.microsoft.com/en-us/aspnet/core/performance/caching/output?view=aspnetcore-8.0) in ASP.NET Core - [Cache in-memory](https://learn.microsoft.com/en-us/aspnet/core/performance/caching/memory?view=aspnetcore-8.0) in ASP.NET Core Part of: https://github.com/getsentry/team-sdks/issues/62

Feature
Product: Performance
Starfish

Create OOTB support for our caches module: https://develop.sentry.dev/sdk/performance/modules/queues/ Part of: https://github.com/getsentry/team-sdks/issues/63

Feature
Product: Performance
Starfish

When offline, the `CachingTransport` will leave envelopes stuck in `__processing`. Even if the client goes online again and starts sending new events, the old ones remain there. Only during restart...

Bug
Offline Caching

Azure Functions Worker docs stuck on `3.33.0-beta.1` ![Screenshot 2024-06-03 at 14 42 33](https://github.com/getsentry/sentry-dotnet/assets/25725783/9f391527-0757-4a1e-887b-27611cc236c8)

Azure
Documentation

Benefits: - Allows us to be optinionated whether UWP is targeted - Wrap the enricher to fix non-available stuff (i.e. in foreground) - Wrap .NET native functionality that is not...

Feature
Framework: UWP
.NET Native

We're bundling `sentry-cli` with the nuget package and we have [automatic debug symbol upload](https://github.com/getsentry/sentry-dotnet/blob/788535473c4153c1662bfbb074e8c68002aa5c75/src/Sentry/buildTransitive/Sentry.targets#L170) in place. But there is more that we could do: - https://github.com/getsentry/sentry-dotnet/issues/2142 - https://github.com/getsentry/sentry-dotnet/issues/3058 - https://github.com/getsentry/sentry-dotnet/issues/2160

Feature

Metrics being stable and all we could and should consider what the SDK can offer OOTB: Potential candidates: - CPU usage - Memory usage - GC heap size - Garbage...

Feature
Product: Metrics