No commit activity in last 3 years
No release in over 3 years
Keep track of the status of chef runs on your nodes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.9.0
 Project Readme

chef_status_handler: a Chef Handler for the chef_status web server

  • Reports successful and failed chef client runs to a central server

Getting Started¶ ↑

gem install chef_status_handler

In your client.rb:

require 'chef_status_handler'

my_handler = Medidata::ChefStatusHandler.new
my_handler.url = 'http://example.com/chef_reports.json' # No authentication
my_handler.url = 'http://user:password@example.com/chef_reports.json' # Basic auth

# Configure Chef to use your handler to notify you of failed chef runs
exception_handlers << my_handler
# Notify on successful runs
report_handlers << my_handler