sentry_client icon indicating copy to clipboard operation
sentry_client copied to clipboard

Implement improved ignore list

Open hlubek opened this issue 2 years ago • 3 comments

Goals:

  • [x] Deprecate "blacklist" because of inappropriate naming (but still accept the old configuration option to keep it compatible)
  • [x] Use "ignorelist" as the new name (configuration options and classes)
  • [ ] Extend exception ignore lists based on:
    • [x] Message regexp
    • [x] Class regexp -> provide examples due to escaping / backslashes
    • [ ] Exception code
  • [ ] Document example to readme

This way we could configure a common list of "client" exceptions that cause too much noise in Sentry and are due to e.g. bad route parameters, property mapping or form validation.

hlubek avatar Aug 01 '23 08:08 hlubek

In the long run it would be cool to implement black/whitelist of log entries directly in TYPO3 core instead that each client / LogWriter inventing their own settings. So we could use this also for the FileWriter and other logging services.

baschny avatar Aug 09 '23 14:08 baschny

To be ignored Exception codes should go into core if possible

christophlehmann avatar Sep 13 '23 21:09 christophlehmann

Exception classes can now be ignored with ignore_exceptions

christophlehmann avatar Mar 14 '24 15:03 christophlehmann