summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2018-12-07 16:45:57 -0500
committerHenrik Edin <henrik.edin@mongodb.com>2018-12-18 11:45:45 -0500
commitc70f14205a0cf7de5cfd48e6138c48a9c8f1aa72 (patch)
tree916d00f2976c7b141ba9ea8822e56b2908a50730 /buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py
parentd7d59ed15f6b0f63bc8bd8e7769fb6ca7d8464d9 (diff)
downloadmongo-c70f14205a0cf7de5cfd48e6138c48a9c8f1aa72.tar.gz
SERVER-37994 Add missing change from benchmark upgrade
Diffstat (limited to 'buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py')
-rw-r--r--buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py b/buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py
index 48d476ceb9a..6fedbf71950 100644
--- a/buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py
+++ b/buildscripts/resmokelib/testing/hooks/combine_benchmark_results.py
@@ -112,9 +112,12 @@ class _BenchmarkThreadsReport(object):
{
"context": {
"date": "2015/03/17-18:40:25",
+ "execuable": "./build/opt/mongo/db/concurrency/lock_manager_bm"
"num_cpus": 40,
"mhz_per_cpu": 2801,
"cpu_scaling_enabled": false,
+ "caches": [
+ ],
"library_build_type": "debug"
},
"benchmarks": [
@@ -131,7 +134,7 @@ class _BenchmarkThreadsReport(object):
"""
CONTEXT_FIELDS = [
- "date", "cpu_scaling_enabled", "num_cpus", "mhz_per_cpu", "library_build_type"
+ "date", "cpu_scaling_enabled", "num_cpus", "mhz_per_cpu", "library_build_type", "executable", "caches"
]
Context = collections.namedtuple("Context", CONTEXT_FIELDS) # type: ignore