monasca-notification/monasca_notification/conf/queues.py
Tomasz Trębski e1a9b9a96a Integrate with oslo.conf and oslo.log
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
2017-10-20 09:32:11 +02:00

46 lines
1.7 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
queues_group = cfg.OptGroup('queues',
title='Queues Options',
help=('Options under this group allow to '
'configure valid connection sizes of '
'all queues.'))
queues_opts = [
cfg.IntOpt(name='alarms_size', min=1, default=256,
help='Size of the alarms queue.'),
cfg.IntOpt(name='finished_size', min=1, default=256,
help='Size of the finished alarms queue.'),
cfg.IntOpt(name='notifications_size', min=1, default=256,
help='Size of notifications queue.'),
cfg.IntOpt(name='sent_notifications_size', min=1, default=50,
help='Size of sent notifications queue. '
'Limiting this size reduces potential or '
're-sent notifications after a failure.')
]
def register_opts(conf):
conf.register_group(queues_group)
conf.register_opts(queues_opts, group=queues_group)
def list_opts():
return {
queues_group: queues_opts
}