exception_notification icon indicating copy to clipboard operation
exception_notification copied to clipboard

Add ability to control how exceptions are grouped for error_grouping

Open westonganger opened this issue 4 years ago • 1 comments

We should be able to control how the exceptions are being grouped.

Out of the box the errors are grouped by name and message. This is not very unique.

I want to be able to provide a proc to generate custom grouping identifiers

get_group_identifier: ->(exception, env, data){
  [
    exception.name,
    exception.message,
    env.ip,
    exception.backtrace.first,
  ].join("/")
}

Without this feature the error grouping feature seems not very useful for generic use.

westonganger avatar Aug 27 '21 21:08 westonganger

Yes this would be great - we enabled error_grouping and it doesn't seem to do anything. Getting 1000s of emails of the same errors within minutes -.-

@Martin91 I know that you originally implemented this - would it be possible to add options for more specific grouping?

OskarEichler avatar Dec 20 '22 14:12 OskarEichler