Puppet Class: collectd::plugins::aggregation
- Defined in:
- manifests/plugins/aggregation.pp
Overview
private
2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/plugins/aggregation.pp', line 2
class collectd::plugins::aggregation(
$plugin_template = 'collectd/aggregation-cpu.conf.erb'
) {
include collectd
collectd::plugins::plugin_common { 'aggregation':
package_name => 'UNSET',
package_ensure => present,
package_required => false,
plugin_file_name => '10-aggregation-cpu.conf',
plugin_template => $plugin_template,
}
}
|