diff options
author | Yuxuan Li <yuxuanli@google.com> | 2016-11-09 15:06:00 -0800 |
---|---|---|
committer | Yuxuan Li <yuxuanli@google.com> | 2016-11-09 15:06:00 -0800 |
commit | 2b4d3726203f96fb0e51215e118bec33e8d3493c (patch) | |
tree | d7d8a44f3c0cc20ee562cb204285b8a7696ce835 /tools/run_tests | |
parent | 9ba52e7aa99eb9f71af09616e5b61e03654b90de (diff) |
hiding totalCpuTime and idleCpuTime from ServerStatus proto message
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/performance/bq_upload_result.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/performance/bq_upload_result.py b/tools/run_tests/performance/bq_upload_result.py index 5d0fcfa67a..995f1fda63 100755 --- a/tools/run_tests/performance/bq_upload_result.py +++ b/tools/run_tests/performance/bq_upload_result.py @@ -125,7 +125,8 @@ def _flatten_result_inplace(scenario_result): scenario_result['summary'].pop('serverCpuUsage', None) scenario_result['summary'].pop('successfulRequestsPerSecond', None) scenario_result['summary'].pop('failedRequestsPerSecond', None) - + scenario_result['stats'].pop('totalCpuTime', None) + scenario_result['stats'].pop('idleCpuTime', None) def _populate_metadata_inplace(scenario_result): """Populates metadata based on environment variables set by Jenkins.""" |