Filter user issues from Sentry (#5859)
This commit is contained in:
parent
f2c31e92ce
commit
03d361f553
|
@ -40,7 +40,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<string> FilteredExceptionMessages = new List<string>
|
||||
|
|
Loading…
Reference in New Issue