Puppet Class: collectd::plugin::write_riemann

Defined in:
manifests/plugin/write_riemann.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')
  • manage_package (Any) (defaults to: undef)
  • riemann_host (Any) (defaults to: 'localhost')
  • riemann_port (Any) (defaults to: 5555)
  • protocol (Any) (defaults to: 'UDP')
  • batch (Any) (defaults to: true)
  • store_rates (Any) (defaults to: false)
  • always_append_ds (Any) (defaults to: false)
  • interval (Any) (defaults to: undef)
  • ttl_factor (Any) (defaults to: '2.0')
  • check_thresholds (Any) (defaults to: false)
  • tags (Any) (defaults to: [])
  • attributes (Any) (defaults to: {})


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
39
40
41
42
43
# File 'manifests/plugin/write_riemann.pp', line 2

class collectd::plugin::write_riemann (
  $ensure           = 'present',
  $manage_package   = undef,
  $riemann_host     = 'localhost',
  $riemann_port     = 5555,
  $protocol         = 'UDP',
  $batch            = true,
  $store_rates      = false,
  $always_append_ds = false,
  $interval         = undef,
  $ttl_factor       = '2.0',
  $check_thresholds = false,
  $tags             = [],
  $attributes       = {},
) {

  include ::collectd

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

  validate_bool($store_rates)
  validate_bool($always_append_ds)
  validate_bool($batch)
  validate_bool($check_thresholds)
  validate_numeric($ttl_factor)
  validate_array($tags)
  validate_hash($attributes)

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

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