Puppet Class: ganglia::monitor::cluster
- Defined in:
- manifests/monitor/cluster.pp
Overview
Class: ganglia::monitor::cluster
Configures the cluster section of the gmond.conf file.
See gmond(1) or gmond.conf(5) for additional information.
Parameters
- cluster_name
- cluster_owner
- cluster_latlong
- cluster_url
- cluster_owner
-
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
-
18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'manifests/monitor/cluster.pp', line 18
class ganglia::monitor::cluster (
$cluster_name = 'unspecified',
$cluster_owner = 'unspecified',
$cluster_latlong = 'unspecified',
$cluster_url = 'unspecified'
) {
include 'ganglia::monitor'
concat_fragment { 'gmond+cluster.conf':
content => template('ganglia/gmond/cluster.erb')
}
}
|