0

In case sentry sends lots of similar messages, is there a way to stop it?

We have a lot of clients and the sentry messages are basically all the same so sentry spams me.

kev
  • 8,928
  • 14
  • 61
  • 103

1 Answers1

0

If you're talking about notifications you can disable them per-account or entirely on a project via the integration.

That said if all the messages are the same you should look into why they're not grouping. A common case would be you're using a logging integration and there's a variable in the log message itself.

David Cramer
  • 1,990
  • 14
  • 24
  • There indeed was a log variable in the log message. I have changed it. Fingers crossed I've found all occurrences. :-) – kev Jul 16 '15 at 00:49
  • You can use log formatting a lot of times. For example, in Python: logging.error("An example error: %s", error, exc_info=True) – David Cramer Jul 16 '15 at 03:36