Merge "Add streaming algorithms and SLA to check for outliers"

This commit is contained in:
Jenkins 2015-04-30 16:14:06 +00:00 committed by Gerrit Code Review
commit b6f8ada06b
3 changed files with 19 additions and 4 deletions

View File

@ -321,6 +321,12 @@
sla:
failure_rate:
max: 0
max_seconds_per_iteration: 1.0
max_avg_duration: 0.5
outliers:
max: 1
min_iterations: 10
sigmas: 10
-
args:

View File

@ -10,9 +10,13 @@
"concurrency": 10
},
"sla": {
"max_seconds_per_iteration": 4,
"failure_rate": {
"max": 1
"max_seconds_per_iteration": 4.0,
"failure_rate": {"max": 1},
"max_avg_duration": 3.0,
"outliers": {
"max": 1,
"min_iterations": 10,
"sigmas": 10
}
}
}

View File

@ -8,6 +8,11 @@
times: 100
concurrency: 10
sla:
max_seconds_per_iteration: 4
max_seconds_per_iteration: 4.0
failure_rate:
max: 1
max_avg_duration: 3.0
outliers:
max: 1
min_iterations: 10
sigmas: 10