Puppet Class: collectd::plugin::tail_csv

Defined in:
manifests/plugin/tail_csv.pp

Overview

Parameters:

  • metrics (Hash[String, Collectd::Tail_Csv::Metric, 1])
  • files (Hash[String, Collectd::Tail_Csv::File, 1])
  • ensure (Enum['present', 'absent']) (defaults to: 'present')
  • order (Integer) (defaults to: 10)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'manifests/plugin/tail_csv.pp', line 2

class collectd::plugin::tail_csv (
  Hash[String, Collectd::Tail_Csv::Metric, 1] $metrics,
  Hash[String, Collectd::Tail_Csv::File, 1] $files,
  Enum['present', 'absent'] $ensure = 'present',
  Integer $order                    = 10,
) {
  include collectd

  collectd::plugin { 'tail_csv':
    ensure  => $ensure,
    content => epp('collectd/plugin/tail_csv.conf.epp'),
    order   => $order,
  }
}