aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/dispatcher/influxdb.py
blob: e8c7cf57ba5cb18d415dac10a12d23f71a326c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
##############################################################################
# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

from __future__ import absolute_import

import logging
import time
import os

import requests
from requests import ConnectionError

from yardstick.common import utils
from third_party.influxdb.influxdb_line_protocol import make_lines
from yardstick.dispatcher.base import Base as DispatchBase

LOG = logging.getLogger(__name__)


class InfluxdbDispatcher(DispatchBase):
    """Dispatcher class for posting data into an influxdb target.
    """

    __dispatcher_type__ = "Influxdb"

    def __init__(self, conf):
        super(InfluxdbDispatcher, self).__init__(conf)
        db_conf = conf['dispatcher_influxdb']
        self.timeout = int(db_conf.get('timeout', 5))
        self.target = db_conf.get('target', 'http://127.0.0.1:8086')
        self.db_name = db_conf.get('db_name', 'yardstick')
        self.username = db_conf.get('username', 'root')
        self.password = db_conf.get('password', 'root')

        self.influxdb_url = "%s/write?db=%s" % (self.target, self.db_name)

        self.task_id = None
        self.tags = None

    def flush_result_data(self, data):
        LOG.debug('Test result all : %s', data)
        if self.target == '':
            # if the target was not set, do not do anything
            LOG.error('Dispatcher target was not set, no data will be posted.')

        result = data['result']
        self.tags = result['info']
        self.task_id = result['task_id']
        self.criteria = result['criteria']
        testcases = result['testcases']

        for case, data in testcases.items():
            tc_criteria = data['criteria']
            for record in data['tc_data']:
                # skip results with no data because we influxdb encode empty dicts
                if record.get("data"):
                    self.upload_one_record(record, case, tc_criteria)

        return 0

    def upload_one_record(self, data, case, tc_criteria, task_id=None):
        if task_id:
            self.task_id = task_id

        line = self._data_to_line_protocol(data, case, tc_criteria)
        LOG.debug('Test result line format : %s', line)

        try:
            res = requests.post(self.influxdb_url,
                                data=line,
                                auth=(self.username, self.password),
                                timeout=self.timeout)
        except ConnectionError as err:
            LOG.exception('Failed to record result data: %s', err)
        else:
            if res.status_code != 204:
                LOG.error('Test result posting finished with status code'
                          ' %d.', res.status_code)
                LOG.error(res.text)

    def _data_to_line_protocol(self, data, case, criteria):
        msg = {}

        if not self.tags:
            self.tags = {
                'deploy_scenario': os.environ.get('DEPLOY_SCENARIO', 'unknown'),
                'installer': os.environ.get('INSTALLER_TYPE', 'unknown'),
                'pod_name': os.environ.get('NODE_NAME', 'unknown'),
                'version': os.environ.get('YARDSTICK_BRANCH', 'unknown')
            }

        point = {
            "measurement": case,
            "fields": utils.flatten_dict_key(data["data"]),
            "time": self._get_nano_timestamp(data),
            "tags": self._get_extended_tags(criteria),
        }
        msg["points"] = [point]
        msg["tags"] = self.tags

        return make_lines(msg).encode('utf-8')

    def _get_nano_timestamp(self, results):
        try:
            timestamp = results["timestamp"]
        except KeyError:
            timestamp = time.time()

        return str(int(float(timestamp) * 1000000000))

    def _get_extended_tags(self, criteria):
        tags = {
            "task_id": self.task_id,
            "criteria": criteria
        }

        return tags