From a6f61b2722d2ff06ddacef715d4924bac1fc7b5f Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 5 Aug 2023 13:35:50 -0500 Subject: [PATCH] Filter user issues from Sentry (#5859) (cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc) --- .../Instrumentation/Sentry/SentryTarget.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs index 19dd3ebac..e35952b7a 100644 --- a/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs +++ b/src/NzbDrone.Common/Instrumentation/Sentry/SentryTarget.cs @@ -49,7 +49,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry "UnauthorizedAccessException", // Filter out people stuck in boot loops - "CorruptDatabaseException" + "CorruptDatabaseException", + + // Filter SingleInstance Termination Exceptions + "TerminateApplicationException", + + // User config issue, root folder missing, etc. + "DirectoryNotFoundException" }; public static readonly List FilteredExceptionMessages = new List