aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-01 12:05:17 -0700
committerGravatar GitHub <noreply@github.com>2016-11-01 12:05:17 -0700
commit9dd2c7da2f82eb27dfbef01a9c133e403dcffc45 (patch)
treea9f191aedb0bea36e45a77d8c5ae5bea7652141f /tools
parent2a15a3134689a73e3cf6012313bc043015f14b36 (diff)
parented531b8e82d095255a64e5307c3bf32e803ae222 (diff)
Merge pull request #8597 from ctiller/fieldsz
More data massaging
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/performance/bq_upload_result.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/performance/bq_upload_result.py b/tools/run_tests/performance/bq_upload_result.py
index 9b817b5896..3a3c4ae700 100755
--- a/tools/run_tests/performance/bq_upload_result.py
+++ b/tools/run_tests/performance/bq_upload_result.py
@@ -117,6 +117,7 @@ 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'])