summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorKathleen Chen <kchen2013@gmail.com>2016-08-12 16:13:28 -0400
committerKathleen Chen <kchen2013@gmail.com>2016-08-12 16:14:45 -0400
commit19d3f54fc2978eb6cd9d276fe28d152e8e10df62 (patch)
tree1564a41fda50b5a3cf910ab3400c9e5350cf4a7c /etc
parent6b566f73f49bc936f47e7bffc139d400924fea9b (diff)
downloadmongo-19d3f54fc2978eb6cd9d276fe28d152e8e10df62.tar.gz
SERVER-25578 Update parameter name of reports directory passed in to post run analysis scripts (sys-perf & perf projects)
Diffstat (limited to 'etc')
-rw-r--r--etc/perf.yml20
-rw-r--r--etc/system_perf.yml2
2 files changed, 11 insertions, 11 deletions
diff --git a/etc/perf.yml b/etc/perf.yml
index bde62b7b9a0..a53804ec9f3 100644
--- a/etc/perf.yml
+++ b/etc/perf.yml
@@ -165,10 +165,10 @@ functions:
source ./venv/bin/activate
# Any tasks that want the analysis scripts to analyze mongod.log files should pass in
- # `log_analysis: true` as a var to this function. The following line will select the
+ # `reports_analysis: true` as a var to this function. The following line will select the
# appropriate flags if it's `true`.
- log_analysis_flags="--log-analysis . --perf-file perf/perf.json"
- cmd_flags=$([ "${log_analysis}" = "true" ] && echo "$log_analysis_flags" || echo "")
+ reports_analysis_flags="--reports-analysis . --perf-file perf/perf.json"
+ cmd_flags=$([ "${reports_analysis}" = "true" ] && echo "$reports_analysis_flags" || echo "")
python ../dsi/analysis/perf_regression_check.py $cmd_flags -f history.json --rev ${revision} -t tags.json --refTag 3.2.1-Baseline --overrideFile ../dsi/analysis/master/perf_override.json --variant ${build_variant} --threshold 0.10 --threadThreshold 0.15
"run perf tests":
@@ -268,7 +268,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: where
depends_on:
- variant: linux-wt-standalone
@@ -284,7 +284,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: update
depends_on:
- variant: linux-wt-standalone
@@ -300,7 +300,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: insert
depends_on:
- variant: linux-wt-standalone
@@ -316,7 +316,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: geo
depends_on:
- variant: linux-wt-standalone
@@ -332,7 +332,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: misc
depends_on:
- variant: linux-wt-standalone
@@ -348,7 +348,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: singleThreaded
depends_on:
- variant: linux-wt-standalone
@@ -364,7 +364,7 @@ tasks:
- func: "download analysis scripts"
- func: "analyze"
vars:
- log_analysis: true
+ reports_analysis: true
- name: singleThreaded-wt-repl-comp
depends_on:
- name : compile
diff --git a/etc/system_perf.yml b/etc/system_perf.yml
index 3744dabccff..4e3ca709b2b 100644
--- a/etc/system_perf.yml
+++ b/etc/system_perf.yml
@@ -276,7 +276,7 @@ functions:
script: |
set -o errexit
set -o verbose
- python -u ../src/dsi/dsi/analysis/post_run_check.py ${script_flags} --log-analysis .. --perf-file reports/perf.json --rev ${revision} -f history.json -t tags.json --refTag 3.2.1-Baseline --overrideFile ../src/dsi/dsi/analysis/master/system_perf_override.json --project_id sys-perf --task_name ${task_name} --variant ${build_variant}
+ python -u ../src/dsi/dsi/analysis/post_run_check.py ${script_flags} --reports-analysis reports --perf-file reports/perf.json --rev ${revision} -f history.json -t tags.json --refTag 3.2.1-Baseline --overrideFile ../src/dsi/dsi/analysis/master/system_perf_override.json --project_id sys-perf --task_name ${task_name} --variant ${build_variant}
"compare":
- command: shell.exec