Load additional config files for oslo.messaging options

Currently ceilometermiddleware supports customizing only the limited
number of oslo.messaging using options in  proxy-server.conf but this
has been causing problems with some setups. For example when TLS is
enabled in RabbitMQ, the ssl option in RabbitMQ driver but this has not
been possible.

This introduces a few new options so that ceilometermiddleware can load
additional config files to look up oslo.messaging options.

Closes-Bug: #1673738
Change-Id: I0cae1a0daec189669e51f89231a3d7932784420e
This commit is contained in:
Takashi Kajinami 2023-12-25 20:22:42 +09:00
parent 0689769ba8
commit d5b11338aa
2 changed files with 19 additions and 0 deletions

View File

@ -160,6 +160,18 @@ class Swift(object):
self.ignore_projects = self._get_ignore_projects(conf)
extra_config_files = conf.get('extra_config_files')
if extra_config_files is not None:
extra_config_files = list_from_csv(extra_config_files)
extra_config_dirs = conf.get('extra_config_dirs')
if extra_config_dirs is not None:
extra_config_dirs = list_from_csv(extra_config_dirs)
if extra_config_files is not None or extra_config_dirs is not None:
CONF(default_config_files=extra_config_files,
default_config_dirs=extra_config_dirs)
oslo_messaging.set_transport_defaults(conf.get('control_exchange',
'swift'))
self._notifier = oslo_messaging.Notifier(

View File

@ -0,0 +1,7 @@
---
fixes:
- |
The ceilometer middleware now supports loading additional config files to
look up oslo.messaging lbirary options. Set the ``extra_config_files``
parameter or the ``extra_config_dirs`` parameter in the ceilometer
middleware section in the swift proxy server config file.