Puppet Class: ganglia
- Defined in:
- manifests/init.pp
Overview
Class: ganglia
Configure Ganglia (gmond, gmetad, and web).
This class, and the associated defines, should provide relatively comprehensive coverage of the ganglia features.
See gmond(1), gmetad(1) and gmond.conf(5) for additional details.
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
14 15 16 17 18 19 20 21 |
# File 'manifests/init.pp', line 14
class ganglia {
file { '/etc/ganglia':
ensure => 'directory',
owner => 'root',
group => 'root',
mode => '0755'
}
}
|