Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ampledata/chef-handler-splunkstorm
A Chef Exception & Reporting Handler for Splunk Storm.
https://github.com/ampledata/chef-handler-splunkstorm
Last synced: 3 months ago
JSON representation
A Chef Exception & Reporting Handler for Splunk Storm.
- Host: GitHub
- URL: https://github.com/ampledata/chef-handler-splunkstorm
- Owner: ampledata
- License: apache-2.0
- Created: 2012-05-09T22:39:27.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-26T17:23:08.000Z (about 12 years ago)
- Last Synced: 2024-07-14T06:24:13.893Z (4 months ago)
- Language: Ruby
- Homepage: http://ampledata.org/splunk_storm_chef_handler.html
- Size: 112 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-chef - Chef Splunk Storm Handler - A Chef Exception & Reporting Handler for Splunk Storm. (Chef handlers / Resources - Application configuration)
README
Description
===========A Chef Exception & Reporting Handler for
[Splunk Storm](https://www.splunkstorm.com).Usage
=====1. Create a [Splunk Storm](https://www.splunkstorm.com) account.
2. Retrieve your Splunk Storm [REST API Credentials](http://docs.splunk.com/Documentation/Storm/Beta/User/UseStormsRESTAPI).
3. Download the [chef_handler](http://community.opscode.com/cookbooks/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:```ruby
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](http://wiki.opscode.com/display/chef/Distributing+Chef+Handlers#DistributingChefHandlers-EnabletheChefHandlerwiththe%7B%7Bchefhandler%7D%7DLWRP)