Puppet Class: snmpd::swap
- Defined in:
- manifests/swap.pp
Overview
Class: snmpd::swap
Monitor the amount of swap space available on the sysetm.
See the ‘System Load Monitoring’ section of snmpd.conf(5) for details.
Parameters
- min
-
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
-
15 16 17 18 19 20 21 22 23 |
# File 'manifests/swap.pp', line 15
class snmpd::swap (
$min
) {
concat_fragment { 'snmpd+swap.load':
content => "swap ${min}\n"
}
validate_integer($min)
}
|