Repository is archived
No commit activity in last 3 years
No release in over 3 years
A gem that when configured and used properly will provide a page displaying if the sidekiq processes are within expected operating parameters
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Sidekiq::ProcessHealth::Check


Developed by Patches 02/13/2017 - present


Sidekiq: 4.2.9
Rails: 5.0.2
Ruby: 2.4

Please check the Wiki for rules on contributing and how to report issues.

Gem Version

Build Status

Code Climate

Test Coverage

Issue Count

Dependency Status

Installation

Add one of the following lines to your application's Gemfile:

gem 'sidekiq-process-health-check'

or

gem 'sidekiq-process-health-check', git: 'https://github.com/isuPatches/sidekiq-process-health-check'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install sidekiq-process-health-check

Add the following to your application.rb:

require 'sidekiq/process_health/check'

Usage

Configuration

There are two main configuration options for this gem...they are expected_number_of_processes and job_threshold.

All you need is an initializer to override the defaults:

 Sidekiq::ProcessHealth::Check.configure do |config|
    config.expected_number_of_processes = 4
    config.job_threshold = 10
  end

By default expected_number_of_processes will be 1 and job_threshold will be 50.

Mounting

There are two options for mounting the routes required. There is an engine you can mount in routes.rb:

  mount Sidekiq::ProcessHealth::Check::Engine => '/health'

Or you can include the concern in a controller as shown below:

module Health
  class SidekiqController < ApplicationController
    respond_to :json
    include Sidekiq::ProcessHealth::Check::Controller
  end
end

And update the routes.rb:

namespace :health do
  get '/sidekiq', :to => 'sidekiq#show'
end

Development

After checking out the repo, run bundle install to install dependencies. Then, run bundle exec rspec to run the tests.

To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/isuPatches/sidekiq-process-health-check. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.