diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-04-12 10:46:39 +0800 |
---|---|---|
committer | wenjuan dong <dong.wenjuan@zte.com.cn> | 2017-07-27 02:00:34 +0000 |
commit | dbd84d95163fb492962ebacdea7bc2a89a8b56f9 (patch) | |
tree | 443726a628d8b045e9458909158b04558edaba98 /tests/inspector/__init__.py | |
parent | 3e0300e8f9695348aa4564f87a23ac3c0cf737ff (diff) |
refactor the monitor
JIRA: DOCTOR-99
Change-Id: I1831d329ffe80435532678fcb23d54f310422ce8
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/inspector/__init__.py')
-rw-r--r-- | tests/inspector/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/inspector/__init__.py b/tests/inspector/__init__.py index 35bdb5b9..151cc034 100644 --- a/tests/inspector/__init__.py +++ b/tests/inspector/__init__.py @@ -11,6 +11,7 @@ import os from oslo_config import cfg from oslo_utils import importutils + OPTS = [ cfg.StrOpt('type', default=os.environ.get('INSPECTOR_TYPE', 'sample'), @@ -19,7 +20,7 @@ OPTS = [ required=True), cfg.StrOpt('ip', default='127.0.0.1', - help='the ip of default inspector', + help='the host ip of inspector', required=False), cfg.StrOpt('port', default='12345', @@ -32,6 +33,7 @@ _inspector_name_class_mapping = { 'sample': 'inspector.sample.SampleInspector', } + def get_inspector(conf, log): inspector_class = _inspector_name_class_mapping[conf.inspector.type] return importutils.import_object(inspector_class, conf, log) |