check-processs and check-process-restart will check processes on a system and alert if specific conditions exist based upon a set of filters that each has implemented.
check-cmd will run a specific user designated command and parse the output with a regex or check for a specific status code. If either of these conditions is not what is expected it will alert.
- bin/check-cmd.rb
- bin/check-process-restart.rb
- bin/check-process.rb
- bin/check-process.sh
- bin/metrics-process-status
gem install sensu-plugins-process-checks
Add sensu-plugins-disk-checks to your Gemfile and run bundle install
or bundle update
Using the Sensu sensu_gem LWRP
sensu_gem 'sensu-plugins-process-checks' do
options('--prerelease')
version '0.0.1.alpha.4'
end
Using the Chef gem_package resource
gem_package 'sensu-plugins-process-checks' do
options('--prerelease')
version '0.0.1.alpha.4'
end