Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/garethr/garethr-tasseo
Puppet module for the Tasseo Graphite dashboard
https://github.com/garethr/garethr-tasseo
Last synced: 28 days ago
JSON representation
Puppet module for the Tasseo Graphite dashboard
- Host: GitHub
- URL: https://github.com/garethr/garethr-tasseo
- Owner: garethr
- License: apache-2.0
- Created: 2012-12-28T18:10:24.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-24T22:28:37.000Z (almost 12 years ago)
- Last Synced: 2024-12-11T15:56:13.425Z (about 1 month ago)
- Language: Ruby
- Size: 135 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Puppet module for installing the Tasseo graphite dashboard.
This module is also available on the [Puppet
Forge](https://forge.puppetlabs.com/garethr/tasseo)[![Build
Status](https://secure.travis-ci.org/garethr/garethr-tasseo.png)](http://travis-ci.org/garethr/garethr-tasseo)
[![Dependency
Status](https://gemnasium.com/garethr/garethr-tasseo.png)](http://gemnasium.com/garethr/garethr-tasseo)## Usage
The module includes a single class:
include 'tasseo'
This installs tasseo and starts it running on port 5000 and connects to a Graphite instance running on localhost:8081.
## Configuration
It's very likely you'll want to override at least the URL where graphite can be found.
class { 'tasseo':
port => 5001,
graphite_url => 'http://graphite.example.com',
}If your Graphite instance has basic auth then you can also pass the
username and password details:class { 'tasseo':
graphite_auth => 'username:password',
}