Skip to content

Commit

Permalink
fix typo with statsd::graphitePort
Browse files Browse the repository at this point in the history
  • Loading branch information
jdowning committed Apr 13, 2014
1 parent 9dd7a9f commit a0bde9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ This Puppet module will install [statsd](https://github.com/etsy/statsd/) on Deb
## Usage
```puppet
class { 'statsd':
graphite_host => 'my.graphite.host',
influxdb_host => 'my.influxdb.host',
flushinterval => 1000, # flush every second
percentthreshold => [75, 90, 99],
address => '10.20.1.2',
listenport => 2158,
provider => npm,
graphiteHost => 'my.graphite.host',
flushInterval => 1000,
percentThreshold => [75, 90, 99],
}
```

Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
$address = $statsd::params::address,

$graphiteHost = $statsd::params::graphiteHost,
$graphiteport = $statsd::params::graphitePort,
$graphitePort = $statsd::params::graphitePort,

$backends = $statsd::params::backends,
$debug = $statsd::params::debug,
Expand Down

0 comments on commit a0bde9a

Please sign in to comment.