From 9dd7a9f65751f9dc214514add4ea9eb3f5cf7112 Mon Sep 17 00:00:00 2001 From: Justin Downing Date: Sun, 13 Apr 2014 15:07:58 -0400 Subject: [PATCH] Release 1.1.0 --- CHANGELOG | 7 +++++++ Modulefile | 2 +- metadata.json | 2 +- tests/vagrant.pp | 6 +++++- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d0605ae..0a07cb2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,13 @@ CHANGELOG ========= +1.1.0 +----- + +* Add support for InfluxDB and Librato backends +* Add additional parameters to tune statsd configuration +* Add Vagrantfile support + 1.0.2 ----- diff --git a/Modulefile b/Modulefile index afb8d55..4a46e94 100644 --- a/Modulefile +++ b/Modulefile @@ -1,5 +1,5 @@ name 'jdowning/statsd' -version '1.0.3' +version '1.1.0' source 'https://github.com/justindowning/puppet-statsd' author 'Justin Downing' license 'Apache License, Version 2.0' diff --git a/metadata.json b/metadata.json index a7361a1..2167cb1 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "jdowning/statsd", - "version": "1.0.3", + "version": "1.1.0", "source": "https://github.com/justindowning/puppet-statsd", "author": "Justin Downing", "license": "Apache License, Version 2.0", diff --git a/tests/vagrant.pp b/tests/vagrant.pp index d0f5da5..b64f7af 100644 --- a/tests/vagrant.pp +++ b/tests/vagrant.pp @@ -1,5 +1,9 @@ class { 'nodejs': manage_repo => true }-> +# http://blog.npmjs.org/post/78085451721/npms-self-signed-certificate-is-no-more +exec { '/usr/bin/npm config set ca=""': }-> class { 'statsd': - backends => [ './backends/graphite', 'statsd-influxdb-backend' ], + backends => [ './backends/graphite', 'statsd-influxdb-backend', 'statsd-librato-backend' ], influxdb_host => 'localhost', + librato_email => 'foo@bar.com', + librato_token => 'secret_token', }