Skip to content

Commit

Permalink
- improve README examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dgolja committed Aug 25, 2015
1 parent d00af43 commit dca4eac
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##2015-08-25 - Release 1.0.1
###Summary
Improved the documentation and the module description

##2015-08-25 - Release 1.0.0
###Summary
Major module rewrite to support influxdb 0.9.X. For more info please check the README.md
Expand Down
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,31 @@ If you just want a server installed with the default options you can run include

All interaction for the server is done via `influxdb::server`.

###Install influxdb
Install influxdb

```puppet
class {'influxdb::server':}
```

Enable Graphite plugin

```puppet
class {'influxdb::server':
graphite_enabled => true,
graphite_tags => ['region=us-east', 'zone=1c'],
}
```

Enable Collectd plugin

```puppet
class {'influxdb::server':
collectd_enabled => true,
collectd_bind_address => ':2004',
database => 'collectd',
}
```

##Reference

###Classes
Expand Down

0 comments on commit dca4eac

Please sign in to comment.