aboutsummaryrefslogtreecommitdiffstats
path: root/api/utils/influx.py
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-04-05 04:22:26 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-04-05 04:22:26 +0000
commit12d6fcac3b51d8b6326b5eef3fcfec08d6713d4a (patch)
tree0a6ccd3b70ac78163e8dfb0fef5895c9eafd36b6 /api/utils/influx.py
parentce91fca5ade5ede330bf4c799dbffdf1b4762a9a (diff)
parentb74d875134b988a26441d559a9e700aaa68d6a0c (diff)
Merge "Yardstick virtualenv support"
Diffstat (limited to 'api/utils/influx.py')
-rw-r--r--api/utils/influx.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/api/utils/influx.py b/api/utils/influx.py
index 08996b9c9..9bc6e9abe 100644
--- a/api/utils/influx.py
+++ b/api/utils/influx.py
@@ -14,7 +14,7 @@ import six.moves.configparser as ConfigParser
from six.moves.urllib.parse import urlsplit
from influxdb import InfluxDBClient
-from api import conf
+from yardstick.common import constants as consts
logger = logging.getLogger(__name__)
@@ -22,7 +22,7 @@ logger = logging.getLogger(__name__)
def get_data_db_client():
parser = ConfigParser.ConfigParser()
try:
- parser.read(conf.OUTPUT_CONFIG_FILE_PATH)
+ parser.read(consts.CONF_FILE)
if parser.get('DEFAULT', 'dispatcher') != 'influxdb':
raise RuntimeError
@@ -35,10 +35,10 @@ def get_data_db_client():
def _get_client(parser):
ip = _get_ip(parser.get('dispatcher_influxdb', 'target'))
- username = parser.get('dispatcher_influxdb', 'username')
+ user = parser.get('dispatcher_influxdb', 'username')
password = parser.get('dispatcher_influxdb', 'password')
db_name = parser.get('dispatcher_influxdb', 'db_name')
- return InfluxDBClient(ip, conf.PORT, username, password, db_name)
+ return InfluxDBClient(ip, consts.INFLUXDB_PORT, user, password, db_name)
def _get_ip(url):