5f168778c6
To generate the sample config file, do what other OpenStack projects do and use the oslo.config provided mechanism. Story: 2001009 Task: 4201 Change-Id: I490de4110843f7dfd618a6a8cc8d6a4e35db65ce
47 lines
1.2 KiB
Python
47 lines
1.2 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_log import log
|
|
|
|
from monasca_persister import conf
|
|
from monasca_persister import version
|
|
|
|
CONF = conf.CONF
|
|
LOG = log.getLogger(__name__)
|
|
|
|
_CONF_LOADED = False
|
|
|
|
|
|
def parse_args():
|
|
global _CONF_LOADED
|
|
if _CONF_LOADED:
|
|
LOG.debug('Configuration has been already loaded')
|
|
return
|
|
|
|
log.set_defaults()
|
|
log.register_options(CONF)
|
|
|
|
CONF(prog='persister',
|
|
project='monasca',
|
|
version=version.version_str,
|
|
description='Persists metrics & alarm history in TSDB')
|
|
|
|
log.setup(CONF,
|
|
product_name='persister',
|
|
version=version.version_str)
|
|
|
|
conf.register_opts()
|
|
|
|
_CONF_LOADED = True
|