Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.29 KB

README.md

File metadata and controls

47 lines (31 loc) · 1.29 KB

Heartcheck::Resque

Build Status Code Climate

##A plugin to check resque connection and error amount with heartcheck.

Installation

Add this line to your application's Gemfile:

gem 'heartcheck-resque'

And then execute:

$ bundle

Or install it yourself as:

$ gem install heartcheck-resque

Usage

You can check any resque connection that there's in your app.

Heartcheck.setup do |config|
  config.add :resque do |c|
    c.add_service(failures_limit: 10)
  end
end

Check Heartcheck example here

License

Contributing

  1. Fork it ( https://github.com/locaweb/heartcheck-resque/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request