Skip to content

Commit 762cbb2

Browse files
committed
Update the scenario result schema for additional fields.
Add startTime and endTime fields in the summary field. There are other fields such as core_syscall_epoll_ctl and core_pollset_fd_cache_hits fields in both clientStats and serverStats are added back since the only way to update fields inside a record would be using command: `bq update`, which requires the schema to match the existing BigQuery table. The startTime and endTime fields are added to summary field which is a record.
1 parent b731892 commit 762cbb2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

tools/run_tests/performance/scenario_result_schema.json

+30
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@
180180
"name": "core_pollset_kick_own_thread",
181181
"type": "INTEGER"
182182
},
183+
{
184+
"mode": "NULLABLE",
185+
"name": "core_syscall_epoll_ctl",
186+
"type": "INTEGER"
187+
},
188+
{
189+
"mode": "NULLABLE",
190+
"name": "core_pollset_fd_cache_hits",
191+
"type": "INTEGER"
192+
},
183193
{
184194
"mode": "NULLABLE",
185195
"name": "core_histogram_slow_lookups",
@@ -1012,6 +1022,16 @@
10121022
"name": "core_pollset_kick_own_thread",
10131023
"type": "INTEGER"
10141024
},
1025+
{
1026+
"mode": "NULLABLE",
1027+
"name": "core_syscall_epoll_ctl",
1028+
"type": "INTEGER"
1029+
},
1030+
{
1031+
"mode": "NULLABLE",
1032+
"name": "core_pollset_fd_cache_hits",
1033+
"type": "INTEGER"
1034+
},
10151035
{
10161036
"mode": "NULLABLE",
10171037
"name": "core_histogram_slow_lookups",
@@ -1833,6 +1853,16 @@
18331853
"mode": "NULLABLE",
18341854
"name": "clientQueriesPerCpuSec",
18351855
"type": "FLOAT"
1856+
},
1857+
{
1858+
"mode": "NULLABLE",
1859+
"name": "startTime",
1860+
"type": "TIMESTAMP"
1861+
},
1862+
{
1863+
"mode": "NULLABLE",
1864+
"name": "endTime",
1865+
"type": "TIMESTAMP"
18361866
}
18371867
],
18381868
"mode": "NULLABLE",

0 commit comments

Comments
 (0)