Questions tagged [exception-notifier]
9 questions
11
votes
2 answers
Error reporting when sending emails with delayed_job
What's the proper way to get error reports, when using a tool like AirBrake or ExceptionNotifier from mailing delayed jobs?
I tried to creating my own delayed job class, but the mail object created by Mailer.welcome() (or similar) is not serialized…

Pablo Fernandez
- 279,434
- 135
- 377
- 622
7
votes
2 answers
ActionMailer::Base::NullMail when trying exception_notification in development
I'd like to add the exception_notification gem to our app, however, this happens when I try to manually trigger a mail:
exception
# => #
ExceptionNotifier::Notifier.exception_notification(request.env, exception)
# =>…

svoop
- 3,318
- 1
- 23
- 41
1
vote
2 answers
execption notifier gem issue
I installed exception_notifier gem following this http://railscasts.com/episodes/104-exception-notifications-revised. But when running rails s, I got this
/home/ruby-2.0.0-p195/gems/actionpack-3.2.13/lib/action_dispatch/middleware/stack.rb:43:in…

user1611830
- 4,749
- 10
- 52
- 89
1
vote
1 answer
Exception Notification
I am trying to make an exception notifier. I installed the gem and put this code in production.rb:
config.action_mailer.delivery_method = :sendmail
# Defaults to:
config.action_mailer.sendmail_settings = {
:location =>…

Alejo Amiras
- 67
- 1
- 8
0
votes
1 answer
To set exception recipients email in environment variable
As shown in code below, recipient's mails are hard-coded, how can I set them in environment variable
Example::Application.config.middleware.use ExceptionNotification::Rack,
:email => {
email_prefix: "[Error] ",
sender_address:…

Raza
- 2,320
- 2
- 22
- 32
0
votes
1 answer
Customize exception_notifier, Ruby on Rails
I have successfully added the exception_notifier to my rails app, and it is emailing a notification for all exceptions at the application level (which is exactly what I want). The only problem is that I need to have a few short lines of code ran…
0
votes
1 answer
Rate limiting Airbrake Javascript logs
I have followed the instructions available at https://github.com/airbrake/airbrake-js to allow for JS exceptions to be farmed out to Airbrake.
What I am wondering is - is there a way to intercept these exceptions BEFORE that are sent to Airbrake? I…

paddy mcpaddison
- 45
- 1
- 9
0
votes
1 answer
What is an Airbrake Notifier in android?
I have come accross code for AirBrakeNotifier in an app. However, Before that i should know what it does. All i have come to know is that it tracks error. I could not find a documentation on it. Can anyone please tell? Thanks

ashi
- 63
- 2
- 10
0
votes
4 answers
Is there any python exception notifier present?
What is my requirement ?
--> I need Exception notifier which will email to some specific configured user, about any sort of exception occurring in plain python app and web.py.
I want something similar to this…

Aashish P
- 1,894
- 5
- 22
- 36