Puppet Class: collectd::plugin::load

Defined in:
manifests/plugin/load.pp

Overview

Parameters:

  • ensure (Any) (defaults to: present)
  • interval (Any) (defaults to: undef)


2
3
4
5
6
7
8
9
10
# File 'manifests/plugin/load.pp', line 2

class collectd::plugin::load (
  $ensure   = present,
  $interval = undef,
) {
  collectd::plugin {'load':
    ensure   => $ensure,
    interval => $interval,
  }
}