diff options
author | murgatroid99 <mlumish@google.com> | 2016-11-09 17:14:08 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-11-09 17:14:08 -0800 |
commit | 1731a41cffdd2e687556a55de6d43a531ff6ea12 (patch) | |
tree | 362b1e73626637f645aafb90956401b87ec00b96 /tools | |
parent | e8f9cbbd681a7c2d10efb39cd13b745054149b11 (diff) | |
parent | e63c612e233b4c040fbdc94340ddd209c62e0a8f (diff) |
Merge branch 'master' into node_express_run_perf_tests
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/performance/bq_upload_result.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/run_tests/performance/bq_upload_result.py b/tools/run_tests/performance/bq_upload_result.py index 0ea23d2212..ddcf053ae5 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -115,6 +115,9 @@ def _flatten_result_inplace(scenario_result): scenario_result['scenario']['clientConfig'] = json.dumps(scenario_result['scenario']['clientConfig']) scenario_result['scenario']['serverConfig'] = json.dumps(scenario_result['scenario']['serverConfig']) scenario_result['latencies'] = json.dumps(scenario_result['latencies']) + for stats in scenario_result['serverStats']: + stats.pop('totalCpuTime', None) + stats.pop('idleCpuTime', None) for stats in scenario_result['clientStats']: stats['latencies'] = json.dumps(stats['latencies']) stats.pop('requestResults', None) @@ -122,6 +125,7 @@ def _flatten_result_inplace(scenario_result): scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess']) scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess']) scenario_result['requestResults'] = json.dumps(scenario_result.get('requestResults', [])) + scenario_result['summary'].pop('serverCpuUsage', None) scenario_result['summary'].pop('successfulRequestsPerSecond', None) scenario_result['summary'].pop('failedRequestsPerSecond', None) |