Skip to content
Snippets Groups Projects
Commit 6dbfce0a authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Add clientSuccess and serverSuccess to BQ schema

parent a8dbf3ff
No related branches found
No related tags found
No related merge requests found
...@@ -118,6 +118,8 @@ def _flatten_result_inplace(scenario_result): ...@@ -118,6 +118,8 @@ def _flatten_result_inplace(scenario_result):
for stats in scenario_result['clientStats']: for stats in scenario_result['clientStats']:
stats['latencies'] = json.dumps(stats['latencies']) stats['latencies'] = json.dumps(stats['latencies'])
scenario_result['serverCores'] = json.dumps(scenario_result['serverCores']) scenario_result['serverCores'] = json.dumps(scenario_result['serverCores'])
scenario_result['clientSuccess'] = json.dumps(scenario_result['clientSuccess'])
scenario_result['serverSuccess'] = json.dumps(scenario_result['serverSuccess'])
def _populate_metadata_inplace(scenario_result): def _populate_metadata_inplace(scenario_result):
......
...@@ -198,5 +198,15 @@ ...@@ -198,5 +198,15 @@
"mode": "NULLABLE" "mode": "NULLABLE"
} }
] ]
},
{
"name": "clientSuccess",
"type": "STRING",
"mode": "NULLABLE"
},
{
"name": "serverSuccess",
"type": "STRING",
"mode": "NULLABLE"
} }
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment