Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethr/garethr-riemann
Puppet module for Riemann, published on the Puppet Forge
https://github.com/garethr/garethr-riemann
Last synced: about 1 month ago
JSON representation
Puppet module for Riemann, published on the Puppet Forge
- Host: GitHub
- URL: https://github.com/garethr/garethr-riemann
- Owner: garethr
- License: apache-2.0
- Created: 2012-08-11T11:22:08.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-10-05T22:45:50.000Z (about 2 years ago)
- Last Synced: 2024-10-04T13:43:51.256Z (3 months ago)
- Language: Ruby
- Homepage: https://forge.puppetlabs.com/garethr/riemann
- Size: 108 KB
- Stars: 16
- Watchers: 3
- Forks: 19
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Puppet module for installing and managing [Riemann](http://aphyr.github.com/riemann/),
the event agregation and monitoring tool.This module is also available on the [Puppet Forge](https://forge.puppetlabs.com/garethr/riemann)
[![Puppet
Forge](http://img.shields.io/puppetforge/v/garethr/riemann.svg)](https://forge.puppetlabs.com/garethr/riemann)
[![Build
Status](https://secure.travis-ci.org/garethr/garethr-riemann.png)](http://travis-ci.org/garethr/garethr-riemann)
[![Dependency
Status](https://gemnasium.com/garethr/garethr-riemann.png)](http://gemnasium.com/garethr/garethr-riemann)## Usage
The module includes three main components:
include riemann
include riemann::dash
include riemann::toolsRiemann represents the Riemann daemon and associated configuration,
riemann:dash the dashboard and riemann::tools the client and a couple of
daemons for pushing example data into Riemann.## Configuration
The riemann class has some defaults that can be overridden, for
instance if you wanted a specific version of riemann:class { 'riemann': version => '0.1.1' }
More useful is probably the ability to override the default
configuration file.class { 'riemann': config_file => '/etc/riemann.config' }
In this last case you're responsible for making sure that file exists,
via another puppet resource or otherwise.## Example
For a fully working example of this module you may also be interested in
the [riemann-vagrant
project](https://github.com/garethr/riemann-vagrant).