X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=utils%2Ftest%2Fresult_collection_api%2Fdashboard%2Fbottlenecks2Dashboard.py;h=9a7e4ce1b64d80f948789ea5136963fdc71fb7f5;hb=c18ff1cf2fb2b3eba097334e166cf762fc660ddc;hp=6f7679d6fa1e35096030ae95131f414360887d6f;hpb=e9e4551d038ff684708996929340dc5ededceee9;p=releng.git diff --git a/utils/test/result_collection_api/dashboard/bottlenecks2Dashboard.py b/utils/test/result_collection_api/dashboard/bottlenecks2Dashboard.py index 6f7679d6f..9a7e4ce1b 100755 --- a/utils/test/result_collection_api/dashboard/bottlenecks2Dashboard.py +++ b/utils/test/result_collection_api/dashboard/bottlenecks2Dashboard.py @@ -62,43 +62,38 @@ def format_rubbos_for_dashboard(results): """ test_data = [{'description': 'Rubbos results'}] - # Graph 1: + # Graph 1:Rubbos maximal throughput + # ******************************** + #new_element = [] + #for each_result in results: + # throughput_data = [record['throughput'] for record in each_result['details']] + # new_element.append({'x': each_result['creation_date'], + # 'y': max(throughput_data)}) + + #test_data.append({'name': "Rubbos max throughput", + # 'info': {'type': "graph", + # 'xlabel': 'time', + # 'ylabel': 'maximal throughput'}, + # 'data_set': new_element}) + + # Graph 2: Rubbos last record # ******************************** new_element = [] - for each_result in results: - throughput_data = [record['throughput'] for record in each_result['details']] - new_element.append({'x': each_result['creation_date'], - 'y': max(throughput_data)}) - - test_data.append({'name': "Rubbos max throughput", - 'info': {'type': "graph", - 'xlabel': 'time', - 'ylabel': 'maximal throughput'}, - 'data_set': new_element}) - return test_data - -def format_rubbos_probe_for_dashboard(results): - """ - Post processing for the Rubbos test case of one time - """ - test_data = [{'description': 'Rubbos results'}] - - element = [] latest_result = results[-1]["details"] - for key in sorted(lastest_result): - throughput = latest_result[key]["throughput"] - client_num = int(key) - element.append({'x': client_num, - 'y': throughput}) - #graph + for data in latest_result: + client_num = int(data["client"]) + throughput = int(data["throughput"]) + new_element.append({'x': client_num, + 'y': throughput}) test_data.append({'name': "Rubbos throughput vs client number", 'info': {'type': "graph", 'xlabel': 'client number', 'ylabel': 'throughput'}, - 'data_set': element}) + 'data_set': new_element}) return test_data + def format_tu1_for_dashboard(results): test_data = [{'description': 'Tu-1 performance result'}] line_element = [] @@ -182,11 +177,11 @@ def _get_results(db_url, test_criteria): myDataResults = myNewData['test_results'] return myDataResults - +#only for local test def _test(): - db_url = "http://213.77.62.197" + db_url = "http://testresults.opnfv.org/testapi" results = _get_results(db_url, {"project": "bottlenecks", "testcase": "rubbos"}) - test_result = format_rubbos_probe_for_dashboard(results) + test_result = format_rubbos_for_dashboard(results) print json.dumps(test_result, indent=4) results = _get_results(db_url, {"project": "bottlenecks", "testcase": "tu1"})