blob: be25daa80c268c93b5629228917f3632d3e77613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import pickle
import json
import datetime
import sys
with open('/root/qtip_result/sys_info_temp', 'r') as sys_info_f:
sys_info_dict = pickle.load(sys_info_f)
with open('/root/qtip_result/result_temp', 'r') as result_f:
result_dict = pickle.load(result_f)
host_name = sys_info_dict['1_Hostname']
benchmark_name = str(sys.argv[1])
report_time_stamp = str(datetime.datetime.utcnow().isoformat())
final_dict = {}
final_dict['1 Time of Report'] = report_time_stamp
final_dict['2 System Information'] = sys_info_dict
final_dict['3 ' + benchmark_name + ' result'] = result_dict
with open('/root/qtip_result/' + host_name + '-' + report_time_stamp + '.json', 'w+') as result_json:
json.dump(final_dict, result_json, indent=4, sort_keys=True)
|