sentry-dotnet
sentry-dotnet copied to clipboard
Sentry SDK for .NET
Different signals can be now received in .NET 6 through `PosixSignalRegistration`. We can rely on this to close a session, flush events, add breadcrumbs etc. This task involves exploring which...
[Migration docs from .NET 5 to 6 state](https://docs.microsoft.com/en-us/aspnet/core/migration/50-to-60?view=aspnetcore-6.0&tabs=visual-studio): > When using the minimal hosting model, the endpoint routing middleware wraps the entire middleware pipeline, therefore there's no need to have...
The code to [create a span on the current transaction](https://docs.sentry.io/platforms/dotnet/guides/aspnet/performance/instrumentation/custom-instrumentation/#retrieve-a-transaction) is currently quite verbose: ```csharp var span = SentrySdk.GetSpan(); if (span == null) { span = SentrySdk.StartTransaction("name", "op"); } else...
Add a Sentry.Wpf package to support WPF apps on .NET Core 3.0+ * Making use of WinForms specific APIs that could enrich the event (name of the active Form?) *...
AWS Lambda has the simple approach where you add a method, and the `ASP.NET Core Server` approach. For the latter we already have a [good sample](https://github.com/getsentry/sentry-dotnet/tree/main/samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer) in this repo and...
One of the default metrics sources we want to support for https://github.com/getsentry/sentry-dotnet/issues/3020 is EventSource based metrics. See the Microsoft DevBlog on [.NET 5 Networking Improvements to Telemetry](https://devblogs.microsoft.com/dotnet/net-5-new-networking-improvements/#telemetry) and also the...
The third most visited page in this repository is this sample: https://github.com/getsentry/sentry-dotnet/tree/main/samples/Sentry.Samples.AspNetCore.Mvc We should have a nice readme to it, to the level of: https://github.com/sentry-demos/giraffe or: https://github.com/getsentry/sentry-dotnet/blob/main/samples/Sentry.Samples.Log4Net/README.md Other samples with...
Context: https://github.com/getsentry/sentry-cocoa/pull/932#discussion_r570807351 https://develop.sentry.dev/sdk/event-payloads/span/ if it's a breaking change, fine to do in the next major bump.
To investigate: https://github.com/marketplace/actions/continuous-benchmark-net
Explore https://github.com/microsoft/coyote