aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-31 13:04:00 -0700
committerGravatar GitHub <noreply@github.com>2016-10-31 13:04:00 -0700
commit263459577acde7c252d2592d2c744d9c8e676966 (patch)
treeaa41241e9aa353226a7fb35847dffb8d76285794 /tools/run_tests
parent0fa0f38449c394e24fc9d336a39c0cda5aae1108 (diff)
parentbd3ab19a95472f10093892eca450b0686b486b78 (diff)
Merge pull request #8583 from ctiller/new_fields
Add some fields to bigquery
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/performance/bq_upload_result.py1
-rw-r--r--tools/run_tests/performance/scenario_result_schema.json5
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"
}
]