exception_notification icon indicating copy to clipboard operation
exception_notification copied to clipboard

Exception Notifier Plugin for Rails

Results 74 exception_notification issues
Sort by recently updated
recently updated
newest added

Sidekiq has changed its error_handlers api recently, this generates a warning https://github.com/sidekiq/sidekiq/blob/main/Changes.md#715

I got: A NoMethodError occurred in application#raise_not_found!: undefined method `[]' for nil:NilClass In the email notification, but without stack trace. Stack track I only see in the log (file). How...

### Steps to reproduce Given: ExceptionNotifier is configured with: ``` ignore_notifier_if: { email: ->(env, exception) { ... } }, ``` And an exception notification is manually sent such as through...

### Steps to reproduce rails g exception_notification:install --sidekiq config/initializers/exception_notification.rb config.add_notifier :email, { email_prefix: '[ERROR] ', sender_address: %{"Rails API Exception" }, exception_recipients: %w{[email protected]} } :smtp email configured and working properly with...

See also similar issue #506 Consider adding the ```Rack::Utils::InvalidParameterError``` exception to the built-in list of normally ignored exceptions. That exception is raised whenever any of the request parameters has an...

### Steps to reproduce 1. Use Redis as a cache to group notifications and deploy app onto Heroku using Heroku-20 Stack. (This bug does not appear during local development.) 2....

## What Add `changelog_uri` to the gem metadata. ## Why Changelog URLs have been valid [metadata](https://guides.rubygems.org/specification-reference/#metadata) since 2017 on RubyGems.org. Setting `changelog_uri` will add a "Changelog" link to the Rubygems...

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...