The datasources are only used by the decision_engine, however, they are placed in a directory one level higher. This patch moves the datasources code into the decision_engine folder. Change-Id: Ia54531fb899b79a59bb77adea079ff27c0d518fa
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2019 European Organization for Nuclear Research (CERN)
|
|
#
|
|
# Authors: Corne Lukken <info@dantalion.nl>
|
|
#
|
|
# 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
|
|
|
|
from watcher.decision_engine.datasources import manager
|
|
|
|
datasources = cfg.OptGroup(name='watcher_datasources',
|
|
title='Configuration Options for watcher'
|
|
' datasources')
|
|
|
|
possible_datasources = list(manager.DataSourceManager.metric_map.keys())
|
|
|
|
DATASOURCES_OPTS = [
|
|
cfg.ListOpt("datasources",
|
|
help="Datasources to use in order to query the needed metrics."
|
|
" If one of strategy metric is not available in the first"
|
|
" datasource, the next datasource will be chosen. This is"
|
|
" the default for all strategies unless a strategy has a"
|
|
" specific override.",
|
|
item_type=cfg.types.String(choices=possible_datasources),
|
|
default=possible_datasources),
|
|
cfg.IntOpt('query_max_retries',
|
|
min=1,
|
|
default=10,
|
|
mutable=True,
|
|
help='How many times Watcher is trying to query again',
|
|
deprecated_group="gnocchi_client"),
|
|
cfg.IntOpt('query_timeout',
|
|
min=0,
|
|
default=1,
|
|
mutable=True,
|
|
help='How many seconds Watcher should wait to do query again',
|
|
deprecated_group="gnocchi_client")
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_group(datasources)
|
|
conf.register_opts(DATASOURCES_OPTS, group=datasources)
|
|
|
|
|
|
def list_opts():
|
|
return [(datasources, DATASOURCES_OPTS)]
|