aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Yuxuan Li <yuxuanli@google.com>2016-11-09 15:06:00 -0800
committerGravatar Yuxuan Li <yuxuanli@google.com>2016-11-09 15:06:00 -0800
commit2b4d3726203f96fb0e51215e118bec33e8d3493c (patch)
treed7d8a44f3c0cc20ee562cb204285b8a7696ce835 /tools/run_tests/performance
parent9ba52e7aa99eb9f71af09616e5b61e03654b90de (diff)
hiding totalCpuTime and idleCpuTime from ServerStatus proto message
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-xtools/run_tests/performance/bq_upload_result.py3
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."""