2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'manifests/plugin/rrdcached.pp', line 2
class collectd::plugin::rrdcached (
$ensure = present,
$daemonaddress = 'unix:/tmp/rrdcached.sock',
$datadir = '/var/lib/rrdcached/db/collectd',
$createfiles = true,
$createfilesasync = false,
$stepsize = undef,
$heartbeat = undef,
$interval = undef,
$rrarows = undef,
$rratimespan = [],
$xff = undef,
$collectstatistics = undef,
) {
validate_array($rratimespan)
validate_bool($createfiles, $createfilesasync)
collectd::plugin {'rrdcached':
ensure => $ensure,
content => template('collectd/plugin/rrdcached.conf.erb'),
interval => $interval,
}
}
|