diff options
author | 2016-05-25 15:32:54 +0200 | |
---|---|---|
committer | 2016-05-25 17:39:12 +0200 | |
commit | 27b0a60dc802a6834bc9b2b51274d4016a4b0b7f (patch) | |
tree | c1cc7bac0d7ba506c1d0e53c0d81c3aac5f827f9 /utils/test/result_collection_api/dashboard/yardstick2Dashboard.py | |
parent | f41cc29366b2660ef7d9cb85be6b04b737526f45 (diff) |
Test API add start_date, stop_date parameters in results
Change-Id: I8c8c5b1d82e447fb7a7413368a919b3d3c7b99a6
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'utils/test/result_collection_api/dashboard/yardstick2Dashboard.py')
-rw-r--r-- | utils/test/result_collection_api/dashboard/yardstick2Dashboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/result_collection_api/dashboard/yardstick2Dashboard.py b/utils/test/result_collection_api/dashboard/yardstick2Dashboard.py index 20b086496..4f022d5b9 100644 --- a/utils/test/result_collection_api/dashboard/yardstick2Dashboard.py +++ b/utils/test/result_collection_api/dashboard/yardstick2Dashboard.py @@ -84,7 +84,7 @@ def format_Ping_for_dashboard(results): if "benchmark" in record] avg_rtt = sum(records) / len(records) - new_element.append({'x': data['creation_date'], + new_element.append({'x': data['start_date'], 'y': avg_rtt}) test_data.append({'name': "ping duration", |