Merge "Add streaming algorithms and SLA to check for outliers"
This commit is contained in:
commit
b6f8ada06b
@ -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:
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user