A Puppet module for managing the installation of Graphite.
You can either install using a package or Python Pip (default behaviour). If you
decide to use Pip, then you will need Python, Python's development headers/libs,
pip and virtualenv installed. If you're not already managing these you can use
the python
module, which is included as a dependency:
class { 'python':
pip => true,
dev => true,
virtualenv => true,
}
Then for the simplest possible configuration:
include graphite
To install using a package:
class { 'graphite':
use_python_pip => false,
}
To specifiy the package name, use the following parameters:
whisper_pkg_name
carbon_pkg_name
graphite_web_pkg_name
If you want to run the web interface on a port other than 80 you can pass this in like so:
class { 'graphite':
port => 9000,
}
If you want to install a specific version of whisper and carbon, you like so:
class { 'graphite':
port => 9000,
version => '0.9.12',
}
Graphite can be painfull to install and many blog posts and gists are dedicated to that fact. However it appears to have got easier with most of the components now available in the Python Package repository. All the other puppet modules I found either lacked support for Ubuntu/Debian, relied on an undocumented package or did a lot of wgetting.
Although I've only tested this module on Ubuntu it should work on other distros too, maybe with minor tweaks.