Compare commits

...

3 Commits

Author SHA1 Message Date
BryantHe 4e6cc13773 debug 6 2023-07-27 16:47:17 +08:00
BryantHe d8ee68bcc6 debug 5 2023-07-27 16:43:29 +08:00
BryantHe 989eb0f0f4 debug 4 2023-07-27 16:13:12 +08:00
1 changed files with 3 additions and 3 deletions

View File

@ -317,15 +317,15 @@ def metric_config_gen(module, class_name_str):
"""
Generate metric config for nameko services.
"""
from statsd.client.timer import Timer
import sys
from statsd.client.timer import Timer
sys.path.append('/home/ubuntu/namekoplus-examples')
click.echo(f'sys.path: {sys.path}')
# Extract information of statsd config from the class of nameko service
dest_dir = module.split('.')[0]
file_name = module.split('.')[-1]
_module = importlib.import_module(name='.'+file_name, package=dest_dir)
_module = importlib.import_module(module)
config_list = []
for class_name in class_name_str.split(','):
members = inspect.getmembers(getattr(getattr(_module, file_name), class_name), predicate=inspect.isfunction)