Puppet Class: ganglia::monitor::collection_group
- Defined in:
- manifests/monitor/collection_group.pp
Overview
Class: ganglia::monitor::collection_group
Configure a collection group in gmond.conf.
See gmond(1) and gmond.conf(5) for additional details.
Authors
-
Trevor Vaughan <tvaughan@onyxpoint.com>
11 12 13 14 15 16 17 18 |
# File 'manifests/monitor/collection_group.pp', line 11
class ganglia::monitor::collection_group {
$fragdir = fragmentdir('gmond')
concat_build { 'gmond_cg':
order => [ '*.cg' ],
target => "$fragdir/collection_group.conf",
parent_build => 'gmond'
}
}
|