aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/dispatcher
diff options
context:
space:
mode:
authorQiLiang <liangqi1@huawei.com>2016-01-26 08:55:00 +0000
committerQiLiang <liangqi1@huawei.com>2016-01-26 08:55:00 +0000
commit20b3b5fa5e1ecd8a6b68980d365f82034f69df6d (patch)
tree64795b946cde2070cfe496e59a62fef6d779a5ff /yardstick/dispatcher
parentbdc59cc8ff3aef897ec83e1d86ff872eedd9ed63 (diff)
InfluxDB add authentication support
JIRA: YARDSTICK-212 Change-Id: I6b669800160268db70b5c9e43cbbc053576ec4b5 Signed-off-by: QiLiang <liangqi1@huawei.com>
Diffstat (limited to 'yardstick/dispatcher')
-rw-r--r--yardstick/dispatcher/influxdb.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/yardstick/dispatcher/influxdb.py b/yardstick/dispatcher/influxdb.py
index a0948166e..f61912d72 100644
--- a/yardstick/dispatcher/influxdb.py
+++ b/yardstick/dispatcher/influxdb.py
@@ -30,6 +30,12 @@ influx_dispatcher_opts = [
cfg.StrOpt('db_name',
default='yardstick',
help='The database name to store test results.'),
+ cfg.StrOpt('username',
+ default='root',
+ help='The user name to access database.'),
+ cfg.StrOpt('password',
+ default='root',
+ help='The user password to access database.'),
cfg.IntOpt('timeout',
default=5,
help='The max time in seconds to wait for a request to '
@@ -50,6 +56,8 @@ class InfluxdbDispatcher(DispatchBase):
self.timeout = CONF.dispatcher_influxdb.timeout
self.target = CONF.dispatcher_influxdb.target
self.db_name = CONF.dispatcher_influxdb.db_name
+ self.username = CONF.dispatcher_influxdb.username
+ self.password = CONF.dispatcher_influxdb.password
self.influxdb_url = "%s/write?db=%s" % (self.target, self.db_name)
self.raw_result = []
self.case_name = ""
@@ -146,6 +154,7 @@ class InfluxdbDispatcher(DispatchBase):
LOG.debug('Test result line format : %s' % line)
res = requests.post(self.influxdb_url,
data=line,
+ auth=(self.username, self.password),
timeout=self.timeout)
if res.status_code != 204:
LOG.error('Test result posting finished with status code'