e1a9b9a96a
Change upgrades the monasca-notification to leverage the capabilities of both oslo.log and oslo.conf: - configuration of logging separated from application settings - ability to enforce data types for application settings - ability to use oslo.config-generator capabilities - automatic configuration parsing done by oslo.cfg That change will bring it closer to the rest of monasca components where such transition has happened already. However, in the rest of monasca, oslo.cfg was partially or fully implemented whereas monasca-notification has been relying on YAML based configuration file. Therefore backward compatybility for such format will be kept for now. Story: 2000959 Task: 4093 Task: 4092 Change-Id: Ia75c3b60d0fada854178f21ca5ccb9e6a880f37f
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
# Copyright 2017 FUJITSU LIMITED
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from oslo_config import cfg
|
|
|
|
ap_group = cfg.OptGroup('alarm_processor',
|
|
title='Alarm processor group',
|
|
help='Options to configure alarm processor.')
|
|
|
|
ap_opts = [
|
|
cfg.IntOpt(name='number', min=1, default=2,
|
|
help='Number of alarm processors to spawn',
|
|
deprecated_for_removal=True,
|
|
deprecated_since='1.8.0',
|
|
deprecated_reason='Options is not used in the current code '
|
|
'and will be removed in future releases.'),
|
|
cfg.IntOpt(name='ttl', default=14400,
|
|
advanced=True,
|
|
help='Alarms older than TTL are not processed '
|
|
'by notification engine.')
|
|
]
|
|
|
|
np_group = cfg.OptGroup('notification_processor',
|
|
title='Notification processor group',
|
|
help='Options to configure notification processor.')
|
|
np_opts = [
|
|
cfg.IntOpt(name='number', min=1,
|
|
default=4, help='Number of notification processors to spawn.')
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_group(ap_group)
|
|
conf.register_group(np_group)
|
|
|
|
conf.register_opts(ap_opts, group=ap_group)
|
|
conf.register_opts(np_opts, group=np_group)
|
|
|
|
|
|
def list_opts():
|
|
return {
|
|
ap_group: ap_opts,
|
|
np_group: np_opts
|
|
}
|