No commit activity in last 3 years
No release in over 3 years
Allows searching and reporting of Chef run metrics from Splunk Storm.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Description

A Chef Exception & Reporting Handler for Splunk Storm.

Usage

  1. Create a Splunk Storm account.
  2. Retrieve your Splunk Storm REST API Credentials.
  3. Download the chef_handler Cookbook.
  4. Given you've retrieved your Access Token as ACCESS_TOKEN and Project ID as PROJECT_ID, add a Recipe similar to the example below:
include_recipe 'chef_handler'

gem_package('chef-handler-splunkstorm'){action :nothing}.run_action(:install)

chef_handler 'Chef::Handler::SplunkStorm' do
  action :enable
  arguments ['ACCESS_TOKEN', 'PROJECT_ID']
  source File.join(Gem.all_load_paths.grep(/chef-handler-splunkstorm/).first,
                   'chef', 'handler', 'splunkstorm.rb')
end

See also: Enable Chef Handler with LWRP