fix: update method of start_grafana

This commit is contained in:
BryantHe 2023-08-07 14:44:34 +08:00 committed by Bryant He
parent e19884b1c0
commit 0a2a382a35
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ def start_grafana():
grafana_conf_dir = os.path.join(get_directory('chassis-agent'), 'metric-configs')
grafana_provisioning_path = os.path.join(grafana_conf_dir, 'grafana_conf/provisioning')
grafana_config_path = os.path.join(grafana_conf_dir, 'grafana_conf/config/grafana.ini')
grafana_dashboard_path = os.path.join('.', 'grafana_dashboards')
grafana_dashboard_path = os.path.join(os.getcwd(), 'grafana_dashboards')
returned_string = docker.run(image='grafana/grafana:latest', name='grafana', hostname='grafana',
detach=True, restart='always', tty=True, interactive=True,
publish=[(3100, 3000)], pull='missing',

View File

@ -9,7 +9,7 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
setup(
name='namekoplus',
version='0.4.11',
version='0.4.12',
description='A lightweight Python distributed microservice solution',
long_description=long_description,
long_description_content_type='text/markdown',