Puppet Class: collectd::plugin::pcie_errors
- Defined in:
- manifests/plugin/pcie_errors.pp
Overview
Class to manage pcie_errors plugin for collectd
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/plugin/pcie_errors.pp', line 9
class collectd::plugin::pcie_errors (
Enum['present', 'absent'] $ensure = 'present',
Enum['sysfs', 'proc'] $source = 'sysfs',
Optional[String] $access_dir = undef,
Boolean $report_masked = false,
Boolean $persistent_notifications = false,
) {
include collectd
collectd::plugin { 'pcie_errors':
ensure => $ensure,
content => epp('collectd/plugin/pcie_errors.conf.epp'),
}
}
|