aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance/scenario_result_schema.json
diff options
context:
space:
mode:
authorGravatar lyuxuan <yuxuanli@google.com>2017-01-12 06:27:19 -0800
committerGravatar GitHub <noreply@github.com>2017-01-12 06:27:19 -0800
commitdef69b30756c9fb043f9b807b5c4156f6859c80c (patch)
treebef56a55cd7cbdefa6e0067bd4ba69ef20c24280 /tools/run_tests/performance/scenario_result_schema.json
parent3cdf729eb07b60cd635aadb91718ee54a2f0e808 (diff)
parentac87a46225128f2c92e9d2cb8522b4b88d5abde8 (diff)
Merge pull request #8816 from lyuxuan/cpu_usage2
sending cpu load latency performance test results 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"
}
]