Puppet Class: collectd::plugin::numa
- Defined in:
- manifests/plugin/numa.pp
Overview
Class: collectd::plugin::numa
Class to manage numa write plugin for collectd
Documentation:
https://collectd.org/documentation/manpages/collectd.conf.5.shtml#plugin_numa
Parameters
- ensure
-
Ensure param for collectd::plugin type. Defaults to ‘ensure’
14 15 16 17 18 19 20 21 22 |
# File 'manifests/plugin/numa.pp', line 14
class collectd::plugin::numa (
Enum['present', 'absent'] $ensure = 'present',
) {
include collectd
collectd::plugin { 'numa':
ensure => $ensure,
}
}
|