Puppet Class: collectd::plugin::rrdcached

Defined in:
manifests/plugin/rrdcached.pp

Overview

Parameters:

  • ensure (Any) (defaults to: present)
  • daemonaddress (Any) (defaults to: 'unix:/tmp/rrdcached.sock')
  • datadir (Any) (defaults to: '/var/lib/rrdcached/db/collectd')
  • createfiles (Any) (defaults to: true)
  • createfilesasync (Any) (defaults to: false)
  • stepsize (Any) (defaults to: undef)
  • heartbeat (Any) (defaults to: undef)
  • interval (Any) (defaults to: undef)
  • rrarows (Any) (defaults to: undef)
  • rratimespan (Any) (defaults to: [])
  • xff (Any) (defaults to: undef)
  • collectstatistics (Any) (defaults to: undef)


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,
  }
}