debug 4
This commit is contained in:
parent
a9adfa5cb1
commit
989eb0f0f4
|
@ -317,15 +317,15 @@ def metric_config_gen(module, class_name_str):
|
||||||
"""
|
"""
|
||||||
Generate metric config for nameko services.
|
Generate metric config for nameko services.
|
||||||
"""
|
"""
|
||||||
from statsd.client.timer import Timer
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
from statsd.client.timer import Timer
|
||||||
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))))
|
||||||
click.echo(f'sys.path: {sys.path}')
|
click.echo(f'sys.path: {sys.path}')
|
||||||
|
|
||||||
# Extract information of statsd config from the class of nameko service
|
# Extract information of statsd config from the class of nameko service
|
||||||
dest_dir = module.split('.')[0]
|
dest_dir = module.split('.')[0]
|
||||||
file_name = module.split('.')[-1]
|
file_name = module.split('.')[-1]
|
||||||
_module = importlib.import_module(name='.'+file_name, package=dest_dir)
|
_module = importlib.import_module(module)
|
||||||
config_list = []
|
config_list = []
|
||||||
for class_name in class_name_str.split(','):
|
for class_name in class_name_str.split(','):
|
||||||
members = inspect.getmembers(getattr(getattr(_module, file_name), class_name), predicate=inspect.isfunction)
|
members = inspect.getmembers(getattr(getattr(_module, file_name), class_name), predicate=inspect.isfunction)
|
||||||
|
|
Loading…
Reference in New Issue