aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-31 12:53:40 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-10-31 12:53:40 -0700
commitbd3ab19a95472f10093892eca450b0686b486b78 (patch)
tree26a4131f5d1d9a59fea5dc785040967164638394 /tools
parent2ecceef5cfff193a0d1168234cad6190f6020a3e (diff)
Add some fields to bigquery
Diffstat (limited to 'tools')
-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"
}
]