sentry-dotnet
sentry-dotnet copied to clipboard
Sentry SDK for .NET
### Problem Statement Currently, when an error is reported using the .NET Sentry SDK, the stack trace included in the exception reflects only the point at which the exception was...
### Description [.NET runtime no longer provides default SIGTERM signal handler](https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/10.0/sigterm-signal-handler) which will affect the [AppDomainProcessExitIntegration](https://github.com/getsentry/sentry-dotnet/blob/9521bd145dca2ea11d6b8a2b5e9292085f279afe/src/Sentry/Integrations/AppDomainProcessExitIntegration.cs#L6) (the main purpose of which is to flush on exit). Potentially we could [create...
### Problem Statement We do not support Blazor WebAssembly profiling. We may be able to support Blazor profiling with WebAssembly performance profiling becoming available in .NET 10. See: * https://github.com/dotnet/runtime/issues/76316#issuecomment-2662463594...
Resolves #4744 #skip-changelog
See also https://develop.sentry.dev/sdk/telemetry/logs/. >### Other > >If `debug` is set to `true` in SDK init, calls to the Sentry logger API should also print to the console with the appropriate...
fixes #4493 closes #4733 - #4493 - #4733 See docs: https://develop.sentry.dev/sdk/telemetry/logs/#default-attributes --- ### Changes - Adds missing "default attributes" as per Sentry Developer Documentation. - Applying the values - if...
_Originally posted by @jamescrosswell in https://github.com/getsentry/sentry-dotnet/pull/4521#discussion_r2350765015_ `CrashedLastRun`, `EnableScopeSync` and `ScopeObserver` get overwritten when initialising the Native, iOS and Android integrations... e.g. https://github.com/getsentry/sentry-dotnet/blob/cc613c901d5cbac3a4856156128a26847456e6ec/src/Sentry/Platforms/Cocoa/SentrySdk.cs#L154-L158 https://github.com/getsentry/sentry-dotnet/blob/aab708ffc0c3d26babaedae12beead3aa3b8754e/src/Sentry/Platforms/Android/SentrySdk.cs#L177-L179 Any user configured values for these will...
_Originally posted by @jamescrosswell in [#4461](https://github.com/getsentry/sentry-dotnet/pull/4461/files#r2393354730)_ We can't yet target net10.0-ios26.0 etc. ([even in RC1](https://github.com/dotnet/macios/releases/tag/dotnet-10.0.1xx-rc.1-10727)) > Preview 7 release includes Xcode 26 Beta 4 support for targeting .NET 9. We...
### Description E.g. `Sentry.Hangfire` does not set/read `Scope.Sdk`. Consolidate usages of getting all Contexts via `Scope` for all Logging-Integrations. This can be done together (shortly before or shortly after) with...
It's not obvious to SDK users how they should be configuring `Sentry.SeriLog` and other logging integrations in conjunction with `Sentry.AspNetCore`, `Sentry.Maui` etc. In particular, it's easy for people to make...