Puppet Class: collectd::plugin::uptime

Defined in:
manifests/plugin/uptime.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/uptime.pp', line 2

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