Puppet Class: collectd::plugin::memcached

Defined in:
manifests/plugin/memcached.pp

Overview

Parameters:

  • ensure (Any) (defaults to: present)
  • host (Any) (defaults to: '127.0.0.1')
  • interval (Any) (defaults to: undef)
  • port (Any) (defaults to: 11211)


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

class collectd::plugin::memcached (
  $ensure   = present,
  $host     = '127.0.0.1',
  $interval = undef,
  $port     = 11211,
) {
  collectd::plugin {'memcached':
    ensure   => $ensure,
    content  => template('collectd/plugin/memcached.conf.erb'),
    interval => $interval,
  }
}