Forge Home

graphite_web

Puppet Graphite management module

11,093 downloads

8,693 latest version

3.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.9 (latest)
  • 0.0.8
  • 0.0.7 (deleted)
  • 0.0.6
  • 0.0.5
  • 0.0.4
  • 0.0.3
  • 0.0.2
  • 0.0.1
released Jul 1st 2015
This version is compatible with:
  • Puppet 3.x

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'jbussdieker-graphite_web', '0.0.9'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jbussdieker-graphite_web
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jbussdieker-graphite_web --version 0.0.9

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

jbussdieker/graphite_web — version 0.0.9 Jul 1st 2015

Graphite Web

Puppet Forge Build Status

Usage

To install Graphite with the default parameters

class { 'graphite_web': }

Installing a specific version

class { 'graphite_web':
  revision => '0.9.11',
}

Installing and configuring using Hiera

classes:
 - graphite_web
graphite_web::revision: 0.9.11

Testing

bundle exec rake beaker_nodes

# Use the list the previous command prints to pick a value for BEAKER_set

# When starting testing set provision=yes
bundle exec rake beaker BEAKER_destroy=no BEAKER_set=ubuntu-server-1404-x64 BEAKER_provision=yes
# Make changes/corrections
...
# Run again without provisioning (quicker but not a thorough test)
bundle exec rake beaker BEAKER_destroy=no BEAKER_set=ubuntu-server-1404-x64 BEAKER_provision=no