Filter user issues from Sentry (#5859)

(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)
This commit is contained in:
Qstick 2023-08-05 13:35:50 -05:00 committed by servarr
commit 02c0e2adbb

View file

@ -43,7 +43,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"OutOfMemoryException", "OutOfMemoryException",
// Filter out people stuck in boot loops // 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<string> FilteredExceptionMessages = new List<string> public static readonly List<string> FilteredExceptionMessages = new List<string>