Puppet Class: snmpd::load
- Defined in:
- manifests/load.pp
Overview
Class: snmpd::load
See snmpd.conf(5) ‘System Load Monitoring’ for additional information.
Parameters
- max1
- max5
- max15
- max5
-
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
-
15 16 17 18 19 20 21 22 23 |
# File 'manifests/load.pp', line 15
class snmpd::load (
$max1,
$max5 = '',
$max15 = ''
) {
concat_fragment { 'snmpd+mon.load':
content => "load ${max1} ${max5} ${max15}\n"
}
}
|