https://github.com/airbrake/airbrake
The official Airbrake library for Ruby applications
https://github.com/airbrake/airbrake
Keywords
airbrake apm capistrano crash-reporting delayed-job error-monitoring logger performance-monitoring rails rake resque ruby shoryuken sidekiq sinatra sneakers
Keywords from Contributors
activerecord mvc activejob rubygems rspec rack background-jobs thoughtbot fixtures factory-girl
Last synced: about 15 hours ago
JSON representation
Repository metadata
The official Airbrake library for Ruby applications
- Host: GitHub
- URL: https://github.com/airbrake/airbrake
- Owner: airbrake
- License: mit
- Created: 2011-08-24T19:33:00.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2024-12-21T01:08:22.000Z (12 months ago)
- Last Synced: 2025-11-17T11:01:50.787Z (23 days ago)
- Topics: airbrake, apm, capistrano, crash-reporting, delayed-job, error-monitoring, logger, performance-monitoring, rails, rake, resque, ruby, shoryuken, sidekiq, sinatra, sneakers
- Language: Ruby
- Homepage: https://airbrake.io
- Size: 2.7 MB
- Stars: 972
- Watchers: 49
- Forks: 392
- Open Issues: 18
- Releases: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
README.md
Airbrake
Introduction
Airbrake is an online tool that provides robust exception
tracking in any of your Ruby applications. In doing so, it allows you to easily
review errors, tie an error to an individual piece of code, and trace the cause
back to recent changes. The Airbrake dashboard provides easy categorization,
searching, and prioritization of exceptions so that when errors occur, your team
can quickly determine the root cause.
Key features

This library is built on top of Airbrake Ruby. The difference
between Airbrake and Airbrake Ruby is that the airbrake gem is just a
collection of integrations with frameworks or other libraries. The
airbrake-ruby gem is the core library that performs exception sending and
other heavy lifting.
Normally, you just need to depend on this gem, select the integration you are
interested in and follow the instructions for it. If you develop a pure
frameworkless Ruby application or embed Ruby and don't need any of the listed
integrations, you can depend on the airbrake-ruby gem and ignore this gem
entirely.
The list of integrations that are available in this gem includes:
- Heroku support (as an add-on)
- Web frameworks
- Job processing libraries
- Other libraries
- Plain Ruby scripts
Deployment tracking:
- Using Capistrano
- Using the Rake task
Installation
Bundler
Add the Airbrake gem to your Gemfile:
gem 'airbrake'
Manual
Invoke the following command from your terminal:
gem install airbrake
Configuration
Rails
Integration
To integrate Airbrake with your Rails application, you need to know your
project id and project key. Set AIRBRAKE_PROJECT_ID &
AIRBRAKE_PROJECT_KEY environment variables with your project's values and
generate the Airbrake config:
export AIRBRAKE_PROJECT_ID=<PROJECT ID>
export AIRBRAKE_PROJECT_KEY=<PROJECT KEY>
rails g airbrake
Heroku add-on users can omit specifying the key and the
id. Heroku add-on's environment variables will be used (Heroku add-on
docs):
rails g airbrake
This command will generate the Airbrake configuration file under
config/initializers/airbrake.rb. Make sure that this file is checked into your
version control system. This is enough to start Airbraking.
In order to configure the library according to your needs, open up the file and
edit it. The full list of supported configuration options is available
online.
To test the integration, invoke a special Rake task that we provide:
rake airbrake:test
In case of success, a test exception should appear in your dashboard.
The notify_airbrake controller helpers
The Airbrake gem defines two helper methods available inside Rails controllers:
#notify_airbrake and #notify_airbrake_sync. If you want to notify Airbrake
from your controllers manually, it's usually a good idea to prefer them over
Airbrake.notify, because they automatically add
information from the Rack environment to notices. #notify_airbrake is
asynchronous, while #notify_airbrake_sync is synchronous (waits for responses
from the server and returns them). The list of accepted arguments is identical
to Airbrake.notify.
Additional features: user reporting, sophisticated API
The library sends all uncaught exceptions automatically, attaching the maximum
possible amount information that can help you to debug errors. The Airbrake gem
is capable of reporting information about the currently logged in user (id,
email, username, etc.), if you use an authentication library such as Devise. The
library also provides a special API for manual error
reporting. The description of the API is available online.
Automatic integration with Rake tasks and Rails runner
Additionally, the Rails integration offers automatic exception reporting in any
Rake tasks[link] and Rails runner.
Integration with filter_parameters
If you want to reuse Rails.application.config.filter_parameters in Airbrake
you can configure your notifier the following way:
# config/initializers/airbrake.rb
Airbrake.configure do |c|
c.blocklist_keys = Rails.application.config.filter_parameters
end
There are a few important details:
- You must load
filter_parameter_logging.rbbefore the Airbrake config - If you use Lambdas to configure
filter_parameters, you need to convert them
to Procs. Otherwise you will getArgumentError - If you use Procs to configure
filter_parameters, the procs must return an
Array of keys compatible with the Airbrake allowlist/blocklist option
(String, Symbol, Regexp)
Consult the
example application, which
was created to show how to configure filter_parameters.
filter_parameters dot notation warning
The dot notation introduced in rails/pull/13897 for
filter_parameters (e.g. a key like credit_card.code) is unsupported for
performance reasons. Instead, simply specify the code key. If you have a
strong opinion on this, leave a comment in
the dedicated issue.
Logging
In new Rails apps, by default, all the Airbrake logs are written into
log/airbrake.log. In older versions we used to write to wherever
Rails.logger writes. If you wish to upgrade your app to the new behaviour,
please configure your logger the following way:
c.logger = Airbrake::Rails.logger
Sinatra
To use Airbrake with Sinatra, simply require the gem, configure it
and use our Rack middleware.
# myapp.rb
require 'sinatra/base'
require 'airbrake'
Airbrake.configure do |c|
c.project_id = 113743
c.project_key = 'fd04e13d806a90f96614ad8e529b2822'
# Display debug output.
c.logger.level = Logger::DEBUG
end
class MyApp < Sinatra::Base
use Airbrake::Rack::Middleware
get('/') { 1/0 }
end
run MyApp.run!
To run the app, add a file called config.ru to the same directory and invoke
rackup from your console.
# config.ru
require_relative 'myapp'
That's all! Now you can send a test request to localhost:9292 and check your
project's dashboard for a new error.
curl localhost:9292
Rack
To send exceptions to Airbrake from any Rack application, simply use our Rack
middleware, and configure the notifier.
require 'airbrake'
require 'airbrake/rack'
Airbrake.configure do |c|
c.project_id = 113743
c.project_key = 'fd04e13d806a90f96614ad8e529b2822'
end
use Airbrake::Rack::Middleware
Note: be aware that by default the library doesn't filter any parameters,
including user passwords. To filter out passwords
add a filter.
Appending information from Rack requests
If you want to append additional information from web requests (such as HTTP
headers), define a special filter such as:
Airbrake.add_filter do |notice|
next unless (request = notice.stash[:rack_request])
notice[:params][:remoteIp] = request.env['REMOTE_IP']
end
The notice object carries a real Rack::Request object in
its stash.
Rack requests will always be accessible through the :rack_request stash key.
Optional Rack request filters
The library comes with optional predefined builders listed below.
RequestBodyFilter
RequestBodyFilter appends Rack request body to the notice. It accepts a
length argument, which tells the filter how many bytes to read from the body.
By default, up to 4096 bytes is read:
Airbrake.add_filter(Airbrake::Rack::RequestBodyFilter.new)
You can redefine how many bytes to read by passing an Integer argument to the
filter. For example, read up to 512 bytes:
Airbrake.add_filter(Airbrake::Rack::RequestBodyFilter.new(512))
Sending custom route breakdown performance
Arbitrary code performance instrumentation
For every route in your app Airbrake collects performance breakdown
statistics. If you need to monitor a specific operation, you can capture your
own breakdown:
def index
Airbrake::Rack.capture_timing('operation name') do
call_operation(...)
end
call_other_operation
end
That will benchmark call_operation and send performance information to
Airbrake, to the corresponding route (under the 'operation name' label).
Method performance instrumentation
Alternatively, you can measure performance of a specific method:
class UsersController
extend Airbrake::Rack::Instrumentable
def index
call_operation(...)
end
airbrake_capture_timing :index
end
Similarly to the previous example, performance information of the index method
will be sent to Airbrake.
Sidekiq
We support Sidekiq v2+. The configurations steps for them are identical. Simply
require our integration and you're done:
require 'airbrake/sidekiq'
If you required Sidekiq before Airbrake, then you don't even have to require
anything manually and it should just work out-of-box.
Airbrake::Sidekiq::RetryableJobsFilter
By default, Airbrake notifies of all errors, including reoccurring errors during
a retry attempt. To filter out these errors and only get notified when Sidekiq
has exhausted its retries you can add the RetryableJobsFilter:
Airbrake.add_filter(Airbrake::Sidekiq::RetryableJobsFilter.new)
The filter accepts an optional max_retries parameter. When set, it configures
the amount of allowed job retries that won't trigger an Airbrake notification.
Normally, this parameter is configured by the job itself but this setting takes
the highest precedence and forces the value upon all jobs, so be careful when
you use it. By default, it's not set.
Airbrake.add_filter(
Airbrake::Sidekiq::RetryableJobsFilter.new(max_retries: 10)
)
ActiveJob
No additional configuration is needed. Simply ensure that you have configured
your Airbrake notifier with your queue adapter.
Resque
Simply require the Resque integration:
require 'airbrake/resque'
Integrating with Rails applications
If you're working with Resque in the context of a Rails application, create a
new initializer in config/initializers/resque.rb with the following content:
# config/initializers/resque.rb
require 'airbrake/resque'
Resque::Failure.backend = Resque::Failure::Airbrake
Now you're all set.
General integration
Any Ruby app using Resque can be integrated with Airbrake. If you can require
the Airbrake gem after Resque, then there's no need to require
airbrake/resque anymore:
require 'resque'
require 'airbrake'
Resque::Failure.backend = Resque::Failure::Airbrake
If you're unsure, just configure it similar to the Rails approach. If you use
multiple backends, then continue reading the needed configuration steps in
the Resque wiki (it's fairly straightforward).
DelayedJob
Simply require our integration and you're done:
require 'airbrake/delayed_job'
If you required DelayedJob before Airbrake, then you don't even have to require
anything manually and it should just work out-of-box.
Shoryuken
Simply require our integration and you're done:
require 'airbrake/shoryuken'
If you required Shoryuken before Airbrake, then you don't even have to require
anything manually and it should just work out-of-box.
Sneakers
Simply require our integration and you're done:
require 'airbrake/sneakers'
If you required Sneakers before Airbrake, then you don't even have to require
anything manually and it should just work out-of-box.
ActionCable
The ActionCable integration sends errors occurring in ActionCable actions and
subscribed/unsubscribed events. If you use Rails with ActionCable, there's
nothing to do, it's already loaded. If you use ActionCable outside Rails, simply
require it:
require 'airbrake/rails/action_cable'
Rake
Airbrake offers Rake tasks integration, which is used by our Rails
integration[link]. To integrate Airbrake in any project,
just require the gem in your Rakefile, if it hasn't been required and
configure the notifier.
# Rakefile
require 'airbrake'
Airbrake.configure do |c|
c.project_id = 113743
c.project_key = 'fd04e13d806a90f96614ad8e529b2822'
end
task :foo do
1/0
end
Logger
If you want to convert your log messages to Airbrake errors, you can use our
integration with Ruby's Logger class from stdlib. All you need to do is to
wrap your logger in Airbrake's decorator class:
require 'airbrake/logger'
# Create a normal logger
logger = Logger.new($stdout)
# Wrap it
logger = Airbrake::AirbrakeLogger.new(logger)
Now you can use the logger object exactly the same way you use it. For
example, calling fatal on it will both log your message and send it to the
Airbrake dashboard:
logger.fatal('oops')
The Logger class will attempt to utilize the default Airbrake notifier to
deliver messages. It's possible to redefine it via #airbrake_notifier:
# Assign your own notifier.
logger.airbrake_notifier = Airbrake::NoticeNotifier.new
Airbrake severity level
In order to reduce the noise from the Logger integration it's possible to
configure Airbrake severity level. For example, if you want to send only fatal
messages from Logger, then configure it as follows:
# Send only fatal messages to Airbrake, ignore anything below this level.
logger.airbrake_level = Logger::FATAL
By default, airbrake_level is set to Logger::WARN, which means it
sends warnings, errors and fatal error messages to Airbrake.
Configuring Airbrake logger integration with a Rails application
In order to configure a production logger with Airbrake integration, simply
overwrite Rails.logger with a wrapped logger in an after_initialize
callback:
# config/environments/production.rb
config.after_initialize do
# Standard logger with Airbrake integration:
# https://github.com/airbrake/airbrake#logger
Rails.logger = Airbrake::AirbrakeLogger.new(Rails.logger)
end
Configuring Rails APM SQL query stats when using Rails engines
By default, the library collects Rails SQL performance stats. For standard Rails
apps no extra configuration is needed. However if your app uses Rails
engines, you need to take an
additional step to make sure that the file and line information is present for
queries being executed in the engine code.
Specifically, you need to make sure that your
Rails.backtrace_cleaner
has a silencer that doesn't silence engine code (will be silenced by
default). For example, if your engine is called blorgh and its main directory
is in the root of your project, you need to extend the default silencer provided
with Rails and add the path to your engine:
# config/initializers/backtrace_silencers.rb
# Delete default silencer(s).
Rails.backtrace_cleaner.remove_silencers!
# Define custom silencer, which adds support for the "blorgh" engine
Rails.backtrace_cleaner.add_silencer do |line|
app_dirs_pattern = %r{\A/?(app|config|lib|test|blorgh|\(\w*\))}
!app_dirs_pattern.match?(line)
end
Plain Ruby scripts
Airbrake supports any type of Ruby applications including plain Ruby scripts.
If you want to integrate your script with Airbrake, you don't have to use this
gem. The Airbrake Ruby gem provides all the needed tooling.
Deploy tracking
By notifying Airbrake of your application deployments, all errors are resolved
when a deploy occurs, so that you'll be notified again about any errors that
reoccur after a deployment. Additionally, it's possible to review the errors in
Airbrake that occurred before and after a deploy.
There are several ways to integrate deployment tracking with your application,
that are described below.
Capistrano
The library supports Capistrano v2 and Capistrano v3. In order to configure
deploy tracking with Capistrano simply require our integration from your
Capfile:
# Capfile
require 'airbrake/capistrano'
If you use Capistrano 3, define the after :finished hook, which executes the
deploy notification task (Capistrano 2 doesn't require this step).
# config/deploy.rb
namespace :deploy do
after :finished, 'airbrake:deploy'
end
If you version your application, you can set the :app_version variable in
config/deploy.rb, so that information will be attached to your deploy.
# config/deploy.rb
set :app_version, '1.2.3'
Rake task
A Rake task can accept several arguments shown in the table below:
| Key | Required | Default | Example |
|---|---|---|---|
| ENVIRONMENT | No | Rails.env | production |
| USERNAME | No | nil | john |
| REPOSITORY | No | nil | https://github.com/airbrake/airbrake |
| REVISION | No | nil | 38748467ea579e7ae64f7815452307c9d05e05c5 |
| VERSION | No | nil | v2.0 |
In Rails
Simply invoke rake airbrake:deploy and pass needed arguments:
rake airbrake:deploy USERNAME=john ENVIRONMENT=production REVISION=38748467 REPOSITORY=https://github.com/airbrake/airbrake
Anywhere
Make sure to require the library Rake integration in your Rakefile.
# Rakefile
require 'airbrake/rake/tasks'
Then, invoke it like shown in the example for Rails.
Supported Rubies
- CRuby >= 2.6.0
- JRuby >= 9k
Contact
In case you have a problem, question or a bug report, feel free to:
- file an issue
- send us an email
- tweet at us
- chat with us (visit airbrake.io and click on the round orange
button in the bottom right corner)
License
The project uses the MIT License. See LICENSE.md for details.
Development & testing
In order to run the test suite, first of all, clone the repo, and install
dependencies with Bundler.
git clone https://github.com/airbrake/airbrake.git
cd airbrake
bundle
Next, run unit tests.
bundle exec rake
In order to test integrations with frameworks and other libraries, install their
dependencies with help of the following command:
bundle exec appraisal install
To run integration tests for a specific framework, use the appraisal command.
bundle exec appraisal rails-4.2 rake spec:integration:rails
bundle exec appraisal sinatra rake spec:integration:sinatra
Pro tip: GitHub Actions config has the list of
all the integration tests and commands to invoke them.
Owner metadata
- Name: Airbrake
- Login: airbrake
- Email:
- Kind: organization
- Description: Visibility into your Application's Health
- Website: https://airbrake.io
- Location: San Francisco
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/1015434?v=4
- Repositories: 53
- Last ynced at: 2023-04-10T08:19:51.201Z
- Profile URL: https://github.com/airbrake
GitHub Events
Total
- Issues event: 5
- Watch event: 16
- Issue comment event: 6
- Push event: 6
- Pull request review event: 2
- Fork event: 1
- Create event: 1
Last Year
- Issues event: 4
- Watch event: 12
- Issue comment event: 3
- Fork event: 1
Committers metadata
Last synced: 4 days ago
Total Commits: 1,720
Total Committers: 240
Avg Commits per committer: 7.167
Development Distribution Score (DDS): 0.663
Commits in past year: 2
Committers in past year: 1
Avg Commits per committer in past year: 2.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Kyrylo Silin | s****n@k****g | 580 |
| Hrvoje Šimić | s****c@g****m | 227 |
| Jason Morrison | j****n@t****m | 75 |
| Jon Yurek | j****k@t****m | 66 |
| Joe Ferris | j****s@g****m | 49 |
| Nick Quaranto | n****k@q****o | 47 |
| Joe Ferris | j****s@m****l | 47 |
| shifi | m****r@g****m | 37 |
| David Palm | d****m@g****m | 34 |
| jyurek | j****k@7****a | 28 |
| Harold Giménez | h****z@t****m | 25 |
| Joshua Clayton | j****n@t****m | 21 |
| Tammer Saleh | t****h@t****m | 21 |
| Ali Faiz | a****i@c****g | 19 |
| Tristan Dunn | t****n@g****m | 18 |
| Chad Pytel | c****l@t****m | 17 |
| Jonathan Siegel | u****0@g****m | 14 |
| Matt Jankowski | m****i@t****m | 10 |
| Mike Burns | m****s@t****m | 10 |
| Gabe Berke-Williams | g****e@t****m | 9 |
| Leonid Shevtsov | l****d@s****e | 9 |
| Brian Hawley | b****y@y****m | 8 |
| emill | e****l@7****a | 7 |
| Jonathan Siegel | j****n@J****l | 7 |
| spodlecki | s****e@m****m | 7 |
| Josh Kalderimis | j****s@g****m | 7 |
| Dan Croak | d****k@t****m | 6 |
| Morgan Mikel McDaris | m****s@y****m | 6 |
| grosser | m****l@g****t | 5 |
| Benjamin Oakes | b****n@b****m | 5 |
| and 210 more... | ||
Committer domains:
- thoughtbot.com: 15
- causes.com: 2
- me.com: 2
- digital.cabinet-office.gov.uk: 1
- logvinov.com: 1
- artfuldodgersoftware.com: 1
- mcw.edu: 1
- iexposure.com: 1
- loyalty.co.nz: 1
- 21croissants.com: 1
- mitre.org: 1
- zoined.com: 1
- squareup.com: 1
- yandex.ru: 1
- mashsolvents.com: 1
- headshift.com: 1
- yahoo.co.uk: 1
- investopresto.com: 1
- moip.com.br: 1
- metanation.com: 1
- klarna.com: 1
- forward.co.uk: 1
- promptus-partners.de: 1
- lukeredpath.co.uk: 1
- bringg.com: 1
- insidesystems.net: 1
- audioboo.fm: 1
- kyrylo.org: 1
- quaran.to: 1
- change.org: 1
- shevtsov.me: 1
- mrskin.com: 1
- grosser.it: 1
- benjaminoakes.com: 1
- brandeis.edu: 1
- veldthuis.com: 1
- streamnation.com: 1
- acm.org: 1
- schmidtwisser.de: 1
- kieliszczyk.net: 1
- groupon.com: 1
- llp.pl: 1
- kipdigitalmedia.com: 1
- agoragames.com: 1
- hintmedia.com: 1
- polleverywhere.com: 1
- room118solutions.com: 1
- outoforder.cc: 1
- ekampf.com: 1
- safe.com: 1
- zefer.co.uk: 1
- dwaynecrooks.com: 1
- dmedvinsky.name: 1
- sutto.net: 1
- corykaufman.com: 1
- scriptbase.org: 1
- quorning.net: 1
- webit.de: 1
- rea-group.com: 1
- arko.net: 1
- alifaiz.com: 1
- mugnolo.com: 1
- truex.com: 1
- alces-software.com: 1
- funkensturm.de: 1
- knowbe4.com: 1
- wikyd.org: 1
- technicalpickles.com: 1
- joshmmiller.com: 1
- jennius.co.uk: 1
- pignata.com: 1
- freerunningtechnologies.com: 1
- redguava.com.au: 1
- tanga.com: 1
- phusion.nl: 1
- louis.info: 1
- echographia.com: 1
- thomasjachmann.com: 1
- abshere.net: 1
- railsnewbie.com: 1
- sgonyea.com: 1
- haahtinen.name: 1
- thinkrelevance.com: 1
- samoliver.com: 1
- ryansouza.net: 1
- cylence.com: 1
- railsware.com: 1
- robert-glaser.de: 1
- socrata.com: 1
- ipepe.pl: 1
- dmcouncil.org: 1
- matthewfawcett.co.uk: 1
- colyer.name: 1
- nadigs.net: 1
- masterleep.com: 1
- teampages.com: 1
- knapo.net: 1
- exceptional.io: 1
- ted.com: 1
- saassoft.com: 1
- ginkel.com: 1
- outright.com: 1
- shopify.com: 1
Issue and Pull Request metadata
Last synced: 3 months ago
Total issues: 44
Total pull requests: 80
Average time to close issues: 16 days
Average time to close pull requests: 18 days
Total issue authors: 41
Total pull request authors: 15
Average comments per issue: 4.32
Average comments per pull request: 0.64
Merged pull request: 57
Bot issues: 0
Bot pull requests: 23
Past year issues: 7
Past year pull requests: 5
Past year average time to close issues: 2 days
Past year average time to close pull requests: about 1 month
Past year issue authors: 7
Past year pull request authors: 2
Past year average comments per issue: 0.86
Past year average comments per pull request: 0.6
Past year merged pull request: 2
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- MathieuDerelle (2)
- nicthatcher (2)
- camerondrysdale (2)
- robertino (1)
- kyoshidajp (1)
- nateleavitt (1)
- kos1kov (1)
- williantenfen (1)
- nicolas-damiani (1)
- Nandez89 (1)
- masonhale (1)
- dragonwebeu (1)
- joshkestenberg (1)
- josegomezr (1)
- leoarnold (1)
Top Pull Request Authors
- kyrylo (41)
- dependabot[bot] (17)
- dependabot-preview[bot] (6)
- thompiler (4)
- tnir (2)
- mishina2228 (2)
- nathannaveen (1)
- roman-melnyk (1)
- nick-desteffen (1)
- masonhale (1)
- naveensrinivasan (1)
- mmcdaris (1)
- alejandrocen (1)
- robertino (1)
- dgsangoma (1)
Top Issue Labels
- Question (15)
- Bug (5)
- Rails (2)
- Duplicate (2)
- Blocked (1)
- Sidekiq (1)
Top Pull Request Labels
- PR: Has Dependencies (23)
- ruby (4)
- github_actions (1)
Package metadata
- Total packages: 3
-
Total downloads:
- rubygems: 94,524,723 total
- Total docker downloads: 143,547,464
- Total dependent packages: 84 (may contain duplicates)
- Total dependent repositories: 4,467 (may contain duplicates)
- Total versions: 504
- Total maintainers: 6
gem.coop: airbrake
Airbrake is an online tool that provides robust exception tracking in any of your Ruby applications. In doing so, it allows you to easily review errors, tie an error to an individual piece of code, and trace the cause back to recent changes. The Airbrake dashboard provides easy categorization, searching, and prioritization of exceptions so that when errors occur, your team can quickly determine the root cause. Additionally, this gem includes integrations with such popular libraries and frameworks as Rails, Sinatra, Resque, Sidekiq, Delayed Job, Shoryuken, ActiveJob and many more.
- Homepage: https://airbrake.io
- Documentation: http://www.rubydoc.info/gems/airbrake/
- Licenses: MIT
- Latest release: 13.0.5 (published 12 months ago)
- Last Synced: 2025-12-09T16:31:49.813Z (about 21 hours ago)
- Versions: 157
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 47,264,481 Total
- Docker Downloads: 71,773,732
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.171%
- Downloads: 0.512%
- Maintainers (6)
rubygems.org: airbrake
Airbrake is an online tool that provides robust exception tracking in any of your Ruby applications. In doing so, it allows you to easily review errors, tie an error to an individual piece of code, and trace the cause back to recent changes. The Airbrake dashboard provides easy categorization, searching, and prioritization of exceptions so that when errors occur, your team can quickly determine the root cause. Additionally, this gem includes integrations with such popular libraries and frameworks as Rails, Sinatra, Resque, Sidekiq, Delayed Job, Shoryuken, ActiveJob and many more.
- Homepage: https://airbrake.io
- Documentation: http://www.rubydoc.info/gems/airbrake/
- Licenses: MIT
- Latest release: 13.0.5 (published 12 months ago)
- Last Synced: 2025-12-09T10:52:10.850Z (1 day ago)
- Versions: 157
- Dependent Packages: 84
- Dependent Repositories: 4,467
- Downloads: 47,260,242 Total
- Docker Downloads: 71,773,732
-
Rankings:
- Dependent packages count: 0.362%
- Downloads: 0.453%
- Dependent repos count: 0.471%
- Docker downloads count: 0.831%
- Average: 0.897%
- Forks count: 1.336%
- Stargazers count: 1.929%
- Maintainers (6)
proxy.golang.org: github.com/airbrake/airbrake
- Homepage:
- Documentation: https://pkg.go.dev/github.com/airbrake/airbrake#section-documentation
- Licenses: mit
- Latest release: v13.0.5+incompatible (published 12 months ago)
- Last Synced: 2025-12-07T21:02:39.479Z (3 days ago)
- Versions: 190
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
Dependencies
- rubocop ~> 1.21
- sneakers >= 0
- amq-protocol >= 0 development
- appraisal >= 0 development
- excon ~> 0.64 development
- http ~> 5.0 development
- httpclient ~> 2.8 development
- pry ~> 0 development
- public_suffix ~> 4.0, < 5.0 development
- rack ~> 2 development
- rack-test ~> 2.0 development
- rake ~> 13 development
- redis ~> 4.5 development
- redis-namespace ~> 1.8 development
- rspec ~> 3 development
- rspec-wait ~> 0 development
- sidekiq ~> 6 development
- typhoeus ~> 1.3 development
- webmock ~> 3 development
- airbrake-ruby ~> 6.0
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
Score: 31.666448087956343