Puppet Class: graphite::carbon_c_relay
- Defined in:
- modules/graphite/manifests/carbon_c_relay.pp
Overview
Class: graphite::carbon_c_relay
This class configures carbon-c-relay to take carbon-relay's place in routing metrics around using line-protocol.
Two copies of carbon-c-relay are run:
-
local-relay: takes metrics on port 1903 and forwards to all configured
carbon-cache processes on the local machine ('carbon-cache' list in config)
-
frontend-relay: listen on standard port 2003 and mirror metrics to all
configured backends ('backends' list in config).
The frontend also supports metric tapping ('teeing' data inline) and metric routing (no duplication) to specific clusters. Respectively via 'cluster_tap' and 'cluster_routes' maps c_relay_settings.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'modules/graphite/manifests/carbon_c_relay.pp', line 16
class graphite::carbon_c_relay( $c_relay_settings ) {
package { 'carbon-c-relay':
ensure => present,
}
systemd::mask { 'carbon-c-relay.service': }
systemd::service { 'carbon-c-relay':
ensure => absent,
content => '',
}
systemd::service { 'carbon-frontend-relay':
ensure => present,
restart => true,
content => systemd_template('frontend-relay'),
}
file { '/etc/carbon/frontend-relay.conf':
content => template('graphite/frontend-relay.conf.erb'),
owner => 'root',
group => 'root',
mode => '0444',
notify => Service['carbon-frontend-relay'],
}
systemd::service { 'carbon-local-relay':
ensure => present,
restart => true,
content => systemd_template('local-relay'),
}
file { '/etc/carbon/local-relay.conf':
content => template('graphite/local-relay.conf.erb'),
owner => 'root',
group => 'root',
mode => '0444',
notify => Service['carbon-local-relay'],
}
}
|