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.
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'
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.
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
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.
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.
The gem is available as open source under the terms of the MIT License.