diff options
author | wenjuan dong <dong.wenjuan@zte.com.cn> | 2017-07-27 01:26:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-27 01:26:53 +0000 |
commit | 6b117129e778b4877b17cf594aec57fb029cb83d (patch) | |
tree | a319b29bfcc8ce63018d189127e0758df36218f8 /tests/inspector/__init__.py | |
parent | 9eb18cabdddda3a2e0bbd05076bc1786ebe6be8b (diff) | |
parent | 0b2494f01dc11091636b46fa49aeab43292f9d28 (diff) |
Merge "refactor sample inspector"
Diffstat (limited to 'tests/inspector/__init__.py')
-rw-r--r-- | tests/inspector/__init__.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/inspector/__init__.py b/tests/inspector/__init__.py new file mode 100644 index 00000000..35bdb5b9 --- /dev/null +++ b/tests/inspector/__init__.py @@ -0,0 +1,37 @@ +############################################################################# +# Copyright (c) 2017 ZTE Corporation and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +import os + +from oslo_config import cfg +from oslo_utils import importutils + +OPTS = [ + cfg.StrOpt('type', + default=os.environ.get('INSPECTOR_TYPE', 'sample'), + choices=['sample', 'congress', 'vitrage'], + help='the component of doctor inspector', + required=True), + cfg.StrOpt('ip', + default='127.0.0.1', + help='the ip of default inspector', + required=False), + cfg.StrOpt('port', + default='12345', + help='the port of default for inspector', + required=False), +] + + +_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) |