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 (Boolean) (defaults to: true)
  • createfilesasync (Boolean) (defaults to: false)
  • stepsize (Any) (defaults to: undef)
  • heartbeat (Any) (defaults to: undef)
  • interval (Any) (defaults to: undef)
  • rrarows (Any) (defaults to: undef)
  • rratimespan (Array) (defaults to: [])
  • xff (Any) (defaults to: undef)
  • collectstatistics (Any) (defaults to: undef)
  • manage_package (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
25
26
27
28
29
30
31
32
33
34
# File 'manifests/plugin/rrdcached.pp', line 2

class collectd::plugin::rrdcached (
  $ensure                   = 'present',
  $daemonaddress            = 'unix:/tmp/rrdcached.sock',
  $datadir                  = '/var/lib/rrdcached/db/collectd',
  Boolean $createfiles      = true,
  Boolean $createfilesasync = false,
  $stepsize                 = undef,
  $heartbeat                = undef,
  $interval                 = undef,
  $rrarows                  = undef,
  Array $rratimespan        = [],
  $xff                      = undef,
  $collectstatistics        = undef,
  $manage_package           = undef,
) {
  include collectd

  $_manage_package = pick($manage_package, $collectd::manage_package)

  if $facts['os']['family'] == 'RedHat' {
    if $_manage_package {
      package { 'collectd-rrdcached':
        ensure => $ensure,
      }
    }
  }

  collectd::plugin { 'rrdcached':
    ensure   => $ensure,
    content  => template('collectd/plugin/rrdcached.conf.erb'),
    interval => $interval,
  }
}