1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#== Class: collectd::plugin::procevent
#
# Class to manage procevent plugin for collectd
#
# Documentation:
# https://collectd.org/documentation/manpages/collectd.conf.5.shtml#plugin_procevent
#
# === Parameters
#
# [*ensure*]
# Ensure param for collectd::plugin type.
# Defaults to 'ensure'
#
# [*manage_package*]
# Set to true if Puppet should manage plugin package installation.
# Defaults to $collectd::manage_package
#
# [*process*]
# Enumerate a process name to monitor. All processes that match this exact
# name will be monitored for EXECs and EXITs.
# Defaults to undef
#
# [*regex_process*]
# Enumerate a process pattern to monitor. All processes that match this
# regular expression will be monitored for EXECs and EXITs.
# Defaults to undef
#
# [*buffer_length*]
# Maximum number of rsyslog events that can be stored in plugin's ring buffer.
# Once an event has been read, its location becomes available for storing
# a new event.
# Defaults to undef
#
class collectd::plugin::procevent (
Enum['present', 'absent'] $ensure = 'present',
Boolean $manage_package = $collectd::manage_package,
Optional[String[1]] $process = undef,
Optional[String[1]] $regex_process = undef,
Optional[Integer[1, default]] $buffer_length = undef,
) {
include collectd
if $manage_package and $facts['os']['family'] == 'RedHat' {
package { 'collectd-procevent':
ensure => $ensure,
}
}
collectd::plugin { 'procevent':
ensure => $ensure,
content => epp('collectd/plugin/procevent.conf.epp'),
}
}
|