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

Authors

  • Trevor Vaughan <tvaughan@onyxpoint.com>

Parameters:

  • cluster_name (Any) (defaults to: 'unspecified')
  • cluster_owner (Any) (defaults to: 'unspecified')
  • cluster_latlong (Any) (defaults to: 'unspecified')
  • cluster_url (Any) (defaults to: 'unspecified')


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')
  }
}