Puppet Class: ganglia::monitor::host
- Defined in:
- manifests/monitor/host.pp
Overview
Class: ganglia::monitor::host
Configures the host section of the gmond.conf file.
See gmond(1) or gmond.conf(5) for additional information.
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
11 12 13 14 15 16 17 18 19 |
# File 'manifests/monitor/host.pp', line 11
class ganglia::monitor::host (
$host_location = 'unspecified'
) {
include 'ganglia::monitor'
concat_fragment { 'gmond+host.conf':
content => template('ganglia/gmond/host.erb')
}
}
|