diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-15 15:21:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-15 15:21:53 -0700 |
commit | bbf2fcd29b4e768e8cbe264e7b017c8922730272 (patch) | |
tree | 27e94caada2efb88cb80deeb63bad5a34ecb9cfc /tools/run_tests/performance | |
parent | 69d897d032b27aaf680d8e2cc5b06cabbb23533a (diff) | |
parent | 6dbfce0a9de06c4aad3ba044b87413abfb25e9f3 (diff) |
Merge pull request #7410 from sreecha/bq_bug
Add clientSuccess and serverSuccess to BQ schema
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-x | tools/run_tests/performance/bq_upload_result.py | 2 | ||||
-rw-r--r-- | tools/run_tests/performance/scenario_result_schema.json | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tools/run_tests/performance/bq_upload_result.py b/tools/run_tests/performance/bq_upload_result.py index fbccf3bdca..2a99499843 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -118,6 +118,8 @@ def _flatten_result_inplace(scenario_result): for stats in scenario_result['clientStats']: stats['latencies'] = json.dumps(stats['latencies']) scenario_result['serverCores'] = json.dumps(scenario_result['serverCores']) + scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess']) + scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess']) def _populate_metadata_inplace(scenario_result): diff --git a/tools/run_tests/performance/scenario_result_schema.json b/tools/run_tests/performance/scenario_result_schema.json index 0325414757..6bec21df39 100644 --- a/tools/run_tests/performance/scenario_result_schema.json +++ b/tools/run_tests/performance/scenario_result_schema.json @@ -198,5 +198,15 @@ "mode": "NULLABLE" } ] + }, + { + "name": "clientSuccess", + "type": "STRING", + "mode": "NULLABLE" + }, + { + "name": "serverSuccess", + "type": "STRING", + "mode": "NULLABLE" } ] |