Puppet Class: collectd::plugin::fhcount

Defined in:
manifests/plugin/fhcount.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')
  • valuesabsolute (Boolean) (defaults to: true)
  • valuespercentage (Boolean) (defaults to: false)
  • interval (Any) (defaults to: undef)


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

class collectd::plugin::fhcount (
  $ensure                   = 'present',
  Boolean $valuesabsolute   = true,
  Boolean $valuespercentage = false,
  $interval                 = undef,
) {
  include collectd

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