Puppet Class: collectd::plugin::mcelog

Defined in:
manifests/plugin/mcelog.pp

Overview

Parameters:

  • ensure (Enum['present', 'absent']) (defaults to: 'present')
  • mceloglogfile (Optional[String]) (defaults to: undef)
  • memory (Optional[Collectd::MCELOG::Memory]) (defaults to: { 'mcelogclientsocket' => '/var/run/mcelog-client', 'persistentnotification' => false, })


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'manifests/plugin/mcelog.pp', line 2

class collectd::plugin::mcelog (
  Enum['present', 'absent'] $ensure = 'present',
  # Log file option and memory option are mutualy exclusive.
  Optional[String] $mceloglogfile = undef,
  Optional[Collectd::MCELOG::Memory] $memory = {
    'mcelogclientsocket' => '/var/run/mcelog-client',
    'persistentnotification' => false,
  }
) {

  include collectd

  collectd::plugin { 'mcelog':
    ensure  => $ensure,
    content => epp('collectd/plugin/mcelog.conf.epp', {
      'mceloglogfile' => $mceloglogfile,
      'memory'        => $memory
    }),
  }
}