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
}),
}
}
|