89ddb1b8f2
Change-Id: I2b367c92125b0a08d0da1795eda080727bcfa1e5
89 lines
2.5 KiB
Puppet
89 lines
2.5 KiB
Puppet
# Installs the aodh evaluator service
|
|
#
|
|
# == Params
|
|
# [*enabled*]
|
|
# (optional) Should the service be enabled.
|
|
# Defaults to true.
|
|
#
|
|
# [*manage_service*]
|
|
# (optional) Whether the service should be managed by Puppet.
|
|
# Defaults to true.
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) ensure state for package.
|
|
# Defaults to 'present'
|
|
#
|
|
# [*workers*]
|
|
# (optional) Number of workers for evaluator service.
|
|
# Defaults to $::os_workers.
|
|
#
|
|
# [*evaluation_interval*]
|
|
# (optional) Period of evaluation cycle
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*event_alarm_cache_ttl*]
|
|
# (optional) TTL of event alram caches, in seconds.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*additional_ingestion_lag*]
|
|
# (optional) The number of seconds to extend the evaluation windows to
|
|
# compensate the reporting/ingestion lag.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# DEPRECATED PARAMETERS
|
|
#
|
|
# [*coordination_url*]
|
|
# (optional) The url to use for distributed group membership coordination.
|
|
# Defaults to undef.
|
|
#
|
|
class aodh::evaluator (
|
|
$manage_service = true,
|
|
$enabled = true,
|
|
$package_ensure = 'present',
|
|
$workers = $::os_workers,
|
|
$evaluation_interval = $::os_service_default,
|
|
$event_alarm_cache_ttl = $::os_service_default,
|
|
$additional_ingestion_lag = $::os_service_default,
|
|
# DEPRECATED PARAMETERS
|
|
$coordination_url = undef,
|
|
) {
|
|
|
|
include aodh::deps
|
|
include aodh::params
|
|
|
|
if $coordination_url != undef {
|
|
warning('The coordination_url parameter is deprecated. Use the aodh::coordination class instead')
|
|
include aodh::coordination
|
|
}
|
|
|
|
aodh_config {
|
|
'DEFAULT/evaluation_interval': value => $evaluation_interval;
|
|
'DEFAULT/event_alarm_cache_ttl': value => $event_alarm_cache_ttl;
|
|
'DEFAULT/additional_ingestion_lag': value => $additional_ingestion_lag;
|
|
'evaluator/workers': value => $workers;
|
|
}
|
|
|
|
package { 'aodh-evaluator':
|
|
ensure => $package_ensure,
|
|
name => $::aodh::params::evaluator_package_name,
|
|
tag => ['openstack', 'aodh-package'],
|
|
}
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$service_ensure = 'running'
|
|
} else {
|
|
$service_ensure = 'stopped'
|
|
}
|
|
|
|
service { 'aodh-evaluator':
|
|
ensure => $service_ensure,
|
|
name => $::aodh::params::evaluator_service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
tag => ['aodh-service','aodh-db-sync-service']
|
|
}
|
|
}
|
|
}
|