github getsentry/sentry-dotnet 3.0.3

latest releases: 4.4.0, 4.3.0, 4.2.1...
3 years ago

Changes

  • Fix DI issues in ASP.NET Core + SentryHttpMessageHandlerBuilderFilter (#789) @Tyrrrz
  • Fix incorrect NRT on SpanContext.ctor (#788) @Tyrrrz
  • Remove the Evaluate error from the breadcrumb list (#790) @Tyrrrz
  • Set default tracing sample rate to 0.0 (#791) @Tyrrrz

Important

This version has a notable change which sets Options.TracesSampleRate to 0.0 by default (used to be 1.0 by default).

If you are using tracing make sure that you explicitly configure Options.TracesSampleRate to some non-zero value:

SentrySdk.Init(options =>
{
    // Send ALL traces (previous default)
    options.TracesSampleRate = 1.0;
});

Don't miss a new sentry-dotnet release

NewReleases is sending notifications on new releases.