Keeps track of fails in Sidekiq jobs in web and provides detailed information on the fail
Add this line to your application's Gemfile:
gem 'sidekiq-jfails', '~> 0.0.2'
# OR
gem 'sidekiq-jfails', git: 'git://github.com/sjke/sidekiq-jfails.git', tag: '0.0.2'
Simply having the gem in your Gemfile is enough to get you started. Your failed jobs will be visible via a Job fails tab in the Web.
This parameter sets the count of tracking fails. Default of 10 000 maximum tracked fails.
To change the maximum count:
Sidekiq.configure_server do |config|
config.jfails_max_count = 1590
end
To disable the limit entirely:
Sidekiq.configure_server do |config|
config.jfails_max_count = 0
end
This parameter sets the count of fails displayed per page. Default of 10 fails per page.
To change the per page:
Sidekiq.configure_server do |config|
config.fails_per_page = 15
end
Depends on Sidekiq >= 2.17
- Fork it
- Create your feature branch (
git checkout -b feature-desc
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin feature-desc
) - Create new Pull Request
Released under the MIT License. See the LICENSE file for further details.