Capture and track your application's exceptions
Questions tagged [airbrake]
104 questions
34
votes
3 answers
ActiveRecord::ConnectionTimeoutError: could not obtain a database connection within 5.000 seconds (waited 5.000 seconds)
I have a rails app in production that i deployed some changes to the other day. All of a sudden now I get the error ActiveRecord::ConnectionTimeoutError: could not obtain a database connection within 5.000 seconds (waited 5.000 seconds) multiple…

Catfish
- 18,876
- 54
- 209
- 353
33
votes
1 answer
Open sourced alternative to airbrake?
Is there an alternative open sourced version of a system like http://airbrake.io/pages/home
I would use airbrake but its purely for internal software and exception management

techarch
- 1,121
- 2
- 20
- 30
14
votes
6 answers
atos and dwarfdump won't symbolicate my address
I received a crash report via AirBrake.io that isn't symbolicated. Since the crash report is not in exactly the same format as an Apple crashlog I can't just drop it on XCode as usual, so I took the exact same build from my XCode archive tried to…

Mac_Cain13
- 3,611
- 2
- 24
- 38
11
votes
1 answer
Vue.js 3's alternative to `Vue.config.errorHandler`
Airbrake's Vue configuration page is still about Vue 2:
Vue.config.errorHandler = function (err, vm, info) {
airbrake.notify({
error: err,
params: {info: info}
});
}
What is the equivalent for Vue.js 3?

akauppi
- 17,018
- 15
- 95
- 120
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
8
votes
3 answers
ERROR -- : uninitialized constant Airbrake (NameError)
I'm working on a rails 3.2.8 project, I've just installed the airbrake gem to track errors, In development I did the airbrake installation steps, then when I did the deployment with capistrano, I got the following error in the unicorn production…

fespinozacast
- 2,484
- 4
- 23
- 38
7
votes
3 answers
Rails airbrake undefined method
I was running my rails application and it was working fine till yesterday but today when i run rails server it is giving me this error.Though my airbrake is also dont have any errors
[airbrake.rb]
Airbrake.configure do |config|
config.api_key =…

aniket tiwari
- 93
- 1
- 10
6
votes
2 answers
Setting up Airbrake on an Ember application
How do you set up Airbrake such that it gets context information from unhandled Javascript errors that occur in an Ember application?

Melinda Weathers
- 2,649
- 25
- 31
6
votes
1 answer
rescue 500 error without messing Airbrake up
I have Airbrake installed on my Rails app. However, I also want to perform some other actions when a 500 occurs. How do I rescue 500 errors without interfering with Airbrake?

bevanb
- 8,201
- 10
- 53
- 90
5
votes
2 answers
Why should controllers use notify_airbrake over Airbrake.notify
In the Airbrake wiki, it says to use notify_airbrake in controllers instead of Airbrake.notify, but doesn't explain why. What is the benefit of using notify_airbrake in controllers and why should it not be used elsewhere?

Jacob Murphy
- 1,387
- 2
- 10
- 18
5
votes
0 answers
PG::TRDeadlockDetected; Process i waits for ShareLock on transaction j;
As a team, we run a software as a service, written in Ruby on Rails, for the National Home Watch Association to aid teams in monitoring cottages, homes, cabins, garages, boat houses, spas, pools, driveways and yards in the tenant's absence.
There is…

jwmcveigh
- 51
- 1
- 4
5
votes
4 answers
Sidekiq/Airbrake only post exception when retries extinguished
I would like Airbrake to only be notified of errors when the retries are exhausted, but I can't seem to think of a way to implement it...
I can add a sidekiq_retries_exhausted hook to send the error to AirBrake but the only way I can think of…

Michael Baldry
- 1,990
- 2
- 14
- 28
4
votes
1 answer
Airbrake throwing error "pybrake - ERROR - strconv.ParseInt: parsing "None": invalid syntax"
I'm trying to use the Airbrake logger in a Django project following the steps described in https://github.com/airbrake/pybrake#django-integration.
I've configured my LOGGING setting like so:
LOGGING = {
'version': 1,
…

Kurt Peek
- 52,165
- 91
- 301
- 526
4
votes
2 answers
how to call the Errbit API?
Starter
Airbrake/Errbit are applications that collect errors generated by other applications, and aggregate the results for review. Airbrake is a commercial app and Errbit is an open-source clone of Airbrake.
Main Course
I need some help figuring…

Dónal
- 185,044
- 174
- 569
- 824
4
votes
1 answer
log backtrace, rescue_from and custom error pages
I am trying to create custom error pages in a project of
rails 3.0.20 and ruby 1.8.7.
Anyway in my application controller:
unless Rails.application.config.consider_all_requests_local
rescue_from Exception, :with => :render_error
rescue_from…

guy schaller
- 4,710
- 4
- 32
- 54