Version information
released Apr 6th 2015
Start using this module
Add this module to your Puppetfile:
mod 'nationbuilder-graphite', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
nationbuilder/graphite — version 0.1.0 Apr 6th 2015
Graphite module for puppet
Description
Puppet module for installing and configuring graphite
Usage
Graphite is a beast. This module tries to tame it a bit.
For your simplest setup, you really only need a cache:
graphite::cache { 'a': }
This will start up a graphite cache listening on port 2003, 2004, and 7002 to receive metrics and to accept queries from graphite-web and other graphite metrics consumers.
Multiple Caches
Multiple caches can be managed with this module:
graphite::cache {
'a':
line_receiver_port => 2003,
udp_receiver_port => 2003,
pickle_receiver_port => 2004
cache_query_port => 7002;
'b':
line_receiver_port => 2103,
udp_receiver_port => 2103,
pickle_receiver_port => 2104
cache_query_port => 7102;
}
Generally you would want to have these behind a relay instance:
class { 'graphite::relay':
destinations => ['127.0.0.1:2004:a','127.0.0.1:2104:b']
}
Aggregator Support
If you want to have an aggregator running in front of your cache(s), use the graphite::aggregator
class:
class { 'graphite::aggregator':
destinations => ['127.0.0.1:2014:a'],
}
Other Defines
graphite::relay_rule
graphite::blacklist
graphite::whitelist
graphite::storage_aggregation
graphite::storage_schema
Contact
If you have problems with this module, please file issues or PRs over at [https://github.com/nationbuilder/puppet-graphite](our project page)
2014-10-31 Release 0.1.0
- initial reworking of module
- create instanced graphite carbon cache defines
Dependencies
- puppetlabs-stdlib (>= 1.0.0)
- puppetlabs-concat (>= 1.0.0)
Copyright (c) 2014, 3DNA Corp All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.