Skip to content

ilonashub/airbrake_handler

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Airbrake handler for Chef

Report Chef exceptions to Airbrake

Works fine with chef versions: 0.9.x and 0.10.x

Usage

gem install airbrake_handler

In your chef client file (often placed at /etc/chef/client.rb) put:

require "airbrake_handler"
exception_handlers << AirbrakeHandler.new(:api_key => "your-airbrake-api-key")

You can pass more options to AirbrakeHander initializer, i.e:

AirbrakeHandler.new(:api_key => "your-airbrake-api-key", :framework_env => "production")

Toadhopper options:

  • :api_key
  • :notify_host

If you want to ignore specific exceptions, you can do this like that:

airbrake_handler = AirbrakeHandler.new(:api_key => "your-airbrake-api-key", :framework_env => "production")
airbrake_handler.ignore << {:class => "SystemExit"}
airbrake_handler.ignore << {:class => "Errno::ECONNRESET", :message => /Connection reset by peer/}

Automation

If you would like to install airbrake_handler by Chef itself, you can use cookbook:

Airbrake Handler Cookbook

Continuous Integration

Build Status

Contributors

Copyright

Copyright (c) 2012 Adam Jacob, Wojciech Wnętrzak See LICENSE for details.

About

Chef handler for sending exceptions to Airbrake

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%