diff options
author | Craig Tiller <ctiller@google.com> | 2016-11-01 15:47:24 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-11-01 15:47:24 -0700 |
commit | c939022dd5b1496c77d6e69a9677b141fc1378fa (patch) | |
tree | fed1150398b249229dabcd4ec37bf419bc3c1e81 /tools | |
parent | ed531b8e82d095255a64e5307c3bf32e803ae222 (diff) |
More data massaging
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/performance/bq_upload_result.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/run_tests/performance/bq_upload_result.py b/tools/run_tests/performance/bq_upload_result.py index 3a3c4ae700..0ea23d2212 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -122,6 +122,8 @@ 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('successfulRequestsPerSecond', None) + scenario_result['summary'].pop('failedRequestsPerSecond', None) def _populate_metadata_inplace(scenario_result): |