Puppet Class: collectd::plugin::table

Defined in:
manifests/plugin/table.pp

Overview

Parameters:

  • tables (Hash[String, Collectd::Table::Table, 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
# File 'manifests/plugin/table.pp', line 2

class collectd::plugin::table (
  Hash[String, Collectd::Table::Table, 1] $tables,
  Enum['present', 'absent'] $ensure    = 'present',
  Integer $order                       = 10,
) {
  include collectd

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