Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning committed Apr 13, 2014
1 parent 61b2774 commit 9dd7a9f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 5 additions & 1 deletion tests/vagrant.pp
Original file line number Diff line number Diff line change
@@ -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 => '[email protected]',
librato_token => 'secret_token',
}

0 comments on commit 9dd7a9f

Please sign in to comment.