diff options
author | 2016-10-31 13:04:00 -0700 | |
---|---|---|
committer | 2016-10-31 13:04:00 -0700 | |
commit | 263459577acde7c252d2592d2c744d9c8e676966 (patch) | |
tree | aa41241e9aa353226a7fb35847dffb8d76285794 /tools/run_tests | |
parent | 0fa0f38449c394e24fc9d336a39c0cda5aae1108 (diff) | |
parent | bd3ab19a95472f10093892eca450b0686b486b78 (diff) |
Merge pull request #8583 from ctiller/new_fields
Add some fields to bigquery
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/performance/bq_upload_result.py | 1 | ||||
-rw-r--r-- | tools/run_tests/performance/scenario_result_schema.json | 5 |
2 files changed, 6 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..5158b22c60 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -120,6 +120,7 @@ def _flatten_result_inplace(scenario_result): 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['requestResults']) 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 6bec21df39..d32d979fe5 100644 --- a/tools/run_tests/performance/scenario_result_schema.json +++ b/tools/run_tests/performance/scenario_result_schema.json @@ -208,5 +208,10 @@ "name": "serverSuccess", "type": "STRING", "mode": "NULLABLE" + }, + { + "name": "request_results", + "type": "STRING", + "mode": "NULLABLE" } ] |