admin管理员组文章数量:1350906
I want only to send Fatal exceptions (when app crashes) to Sentry. If I remove the SetBeforeSent everything is sent, if I have it nothing is sent.
.UseSentry(options =>
{
options.Dsn = App.SentryDsn;
options.DiagnosticLevel = SentryLevel.Fatal;
options.IsGlobalModeEnabled = true;
options.SetBeforeBreadcrumb((sentryEvent, hint) =>
{
if (sentryEvent.Category == "Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics")
{
return null;
}
return sentryEvent;
});
options.SetBeforeSend((sentryEvent, hint) =>
{
if (sentryEvent?.Level == SentryLevel.Fatal)
{
return sentryEvent;
}
return null;
});
})
I try to configure scope when catching exceptions to set it to Fatal but it doesn´t have any effect.
SentrySdk.ConfigureScope(scope =>
{
scope.Level = SentryLevel.Fatal;
});
SentrySdk.CaptureException(ex);
Someone who has a good idea off what's wrong?
I want only to send Fatal exceptions (when app crashes) to Sentry. If I remove the SetBeforeSent everything is sent, if I have it nothing is sent.
.UseSentry(options =>
{
options.Dsn = App.SentryDsn;
options.DiagnosticLevel = SentryLevel.Fatal;
options.IsGlobalModeEnabled = true;
options.SetBeforeBreadcrumb((sentryEvent, hint) =>
{
if (sentryEvent.Category == "Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics")
{
return null;
}
return sentryEvent;
});
options.SetBeforeSend((sentryEvent, hint) =>
{
if (sentryEvent?.Level == SentryLevel.Fatal)
{
return sentryEvent;
}
return null;
});
})
I try to configure scope when catching exceptions to set it to Fatal but it doesn´t have any effect.
SentrySdk.ConfigureScope(scope =>
{
scope.Level = SentryLevel.Fatal;
});
SentrySdk.CaptureException(ex);
Someone who has a good idea off what's wrong?
Share Improve this question asked Apr 1 at 12:23 AndersAnders 2984 silver badges10 bronze badges 1 |2 Answers
Reset to default 1To get only events that are crashes you need to check if the event has an exception with the flag handled: false
. It's a bit involved since you need to check evt.SentryExceptions.FirstOrDefault()?.Handled
or something (I didn't try this out).
In .NET MAUI, unhandled C# exceptions generally crash the app. So you should anyway be only getting crashes out of the box. What types of events are you trying not to capture?
It might be that you're capturing LogError
as events and you want to drop those?
If so try just setting:
options.MinimumEventLevel = SentryLevel.Fatal;
That's configuring the Sentry SDK for MAUI's integration with Microsoft.Extensions.Logging
. Docs on this are here. This specific setting is here.
Note that:
options.DiagnosticLevel = SentryLevel.Fatal;
Only controls what SDK internal logs get printed out to the console (or logcat, etc). That's documented here. And in general the diagnostic logger docs are here.
This helped me to catch unhandled exceptions.
.UseSentry(options =>
{
options.SetBeforeSend((sentryEvent, hint) =>
{
if (sentryEvent?.SentryExceptions.FirstOrDefault()?.Mechanism.Handled == false)
{
return sentryEvent;
}
return null;
});
MinimumEventLevel is of type Microsoft.Extensions.Logging LogLevel not SentryLevel, I tried to set it to LogLevel.Critical but is not sure if it did help.
options.MinimumEventLevel = LogLevel.Critical;
The reason it did not work to set SentryLevel.Fatal was that the SetBeforeSend did not get the modified exception.
SentrySdk.ConfigureScope(scope =>
{
scope.Level = SentryLevel.Fatal;
});
SentrySdk.CaptureException(ex);
options.SetBeforeSend((sentryEvent, hint) =>
{
if (sentryEvent?.Level == SentryLevel.Fatal)
{
return sentryEvent;
}
return null;
});
本文标签: Filter out fatal exceptions before send to Sentry from Net Maui applicationStack Overflow
版权声明:本文标题:Filter out fatal exceptions before send to Sentry from .Net Maui application - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743886895a2556220.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Debug = true;
does it help you understand what the SDK is doing? – Bruno Garcia Commented Apr 1 at 22:05