Created
August 29, 2014 17:29
-
-
Save ConradIrwin/88ee464fe8e01eacb011 to your computer and use it in GitHub Desktop.
How to group by message in bugsnag-ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Group by message | |
| Bugsnag.before_notify_callbacks << lambda { |notif| | |
| notif.grouping_hash = notif.exceptions.first.message if notif.exceptions.first.message == "MY MESSAGE" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment