aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance/scenario_result_schema.json
diff options
context:
space:
mode:
authorGravatar Yuxuan Li <yuxuanli@google.com>2016-11-11 12:05:11 -0800
committerGravatar Yuxuan Li <yuxuanli@google.com>2017-01-11 10:01:16 +0000
commitac87a46225128f2c92e9d2cb8522b4b88d5abde8 (patch)
tree3b4b1eb03b200a3df103ef4bbd004a471fb845ef /tools/run_tests/performance/scenario_result_schema.json
parenta3960b98d6a1b85a1e3b89cd7797a509505fa207 (diff)
enable uploading server cpu usage data from performance tests to big query
Diffstat (limited to 'tools/run_tests/performance/scenario_result_schema.json')
-rw-r--r--tools/run_tests/performance/scenario_result_schema.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/run_tests/performance/scenario_result_schema.json b/tools/run_tests/performance/scenario_result_schema.json
index 3285f212d7..8ec41c377c 100644
--- a/tools/run_tests/performance/scenario_result_schema.json
+++ b/tools/run_tests/performance/scenario_result_schema.json
@@ -213,5 +213,27 @@
"name": "requestResults",
"type": "STRING",
"mode": "NULLABLE"
+ },
+ {
+ "name": "serverCpuStats",
+ "type": "RECORD",
+ "mode": "REPEATED",
+ "fields": [
+ {
+ "name": "totalCpuTime",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "idleCpuTime",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ }
+ ]
+ },
+ {
+ "name": "serverCpuUsage",
+ "type": "FLOAT",
+ "mode": "NULLABLE"
}
]