diff options
author | Craig Tiller <ctiller@google.com> | 2016-11-01 14:27:25 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-11-01 14:27:25 -0700 |
commit | ac119ba887e37c8b4c7fc0e6f43477869796db06 (patch) | |
tree | 51afcc18b19a1688b6cbd40984740bbd0d8200c2 /tools/run_tests/performance/bq_upload_result.py | |
parent | 5282cdb025d222c5bdf6069ae06ea8b568c4baf6 (diff) | |
parent | 9dd2c7da2f82eb27dfbef01a9c133e403dcffc45 (diff) |
Merge github.com:grpc/grpc into microbench
Diffstat (limited to 'tools/run_tests/performance/bq_upload_result.py')
-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 2a99499843..3a3c4ae700 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -117,9 +117,11 @@ def _flatten_result_inplace(scenario_result): scenario_result['latencies'] = json.dumps(scenario_result['latencies']) for stats in scenario_result['clientStats']: stats['latencies'] = json.dumps(stats['latencies']) + stats.pop('requestResults', None) scenario_result['serverCores'] = json.dumps(scenario_result['serverCores']) 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', [])) def _populate_metadata_inplace(scenario_result): |