Actionable insights to solve C# errors.
Install the NuGet package to add the Sentry dependency:
dotnet add package Sentry
Initialize the SDK as early as possible, like in the Main
method in Program.cs/Program.fs
:
using (SentrySdk.Init(o => { // Tells which project in Sentry to send events to: o.Dsn = "https://<key>@sentry.io/<project>"; // When configuring for the first time, to see what the SDK is doing: o.Debug = true; // Set TracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring. // We recommend adjusting this value in production. o.TracesSampleRate = 1.0; })) { // App code goes here - Disposing will flush events out }
Check our documentation for the latest instructions.
See all platformsSee C# stack trace details like filename and line number so you never have to guess. Filter and group C# exceptions intuitively to eliminate noise. Monitor errors at scale without impacting throughput in production.
Quickly identify C# performance issues before they become downtime with performance monitoring. View the entire end-to-end distributed trace to see the exact, poor-performing API call and surface any related errors.
Expose the important events that led to each C# exception: debug logs, network requests, database queries, past errors.
With Sentry's exceptional exception handling in C#, you can triage quickly based on specific parameters like HTTP request, workflow stage, and hostname for each issue. Set custom tags to recreate the error environment relevant to your app, business concerns, and users.
”Sentry's high-quality tooling helps Disney+ maintain high-quality service to its tens of millions of global subscribers.”
Just look at all the high-quality security features all accounts get, regardless of plan.
When Spring Boot is configured to generate Git information every event triggered by Sentry will have a release field set to the current Git commit ID that will enable Monitor Release Health Sentry feature. More details here.
You can get started for free. Pricing depends on the number of monthly events, transactions, and attachments that you send Sentry. For more details, visit our pricing page.