0.0
No commit activity in last 3 years
No release in over 3 years
Better error management for Sidekiq
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 0.74.0
~> 0.10.0
~> 1.3.3
~> 10.0
~> 3.0.0
~> 0.9.0
~> 0.7.1

Runtime

>= 3.0.0
 Project Readme

Sidekiq::Squelch

Turns down the noise when executing Sidekiq jobs. Shit happens, its a fact. Sidekiq is pretty good at dealing with that by requing when an uncaught exception is thrown. And if you're monitoring errors using something like Sentry this can be a bit noisy when executing something that has a regular failures and recovery (i.e. network calls). Squelch allows you to set thresholds for common errors that occur so that you can cut down the noise and see when something is really going wrong.

Installation

Add this line to your application's Gemfile:

gem 'sidekiq-squelch'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sidekiq-squelch

Usage

TODO: Write usage instructions here

Contributing

  1. Fork it ( https://github.com/[my-github-username]/sidekiq-squelch/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