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)
  • 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
35
36
37
38
# 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,
  $manage_package    = undef,
) {

  include ::collectd

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

  if $::osfamily == 'Redhat' {
    if $_manage_package {
      package { 'collectd-rrdcached':
        ensure => $ensure,
      }
    }
  }

  validate_array($rratimespan)
  validate_bool($createfiles, $createfilesasync)

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