diff --git a/theodolite/examples/operator/example-execution.yaml b/theodolite/examples/operator/example-execution.yaml index 48452dee509aa57b36d4d76a8c4646996630a5c2..3b77515bbe020258e917be62122ccd858213fba4 100644 --- a/theodolite/examples/operator/example-execution.yaml +++ b/theodolite/examples/operator/example-execution.yaml @@ -12,11 +12,19 @@ spec: resourceValues: [1, 2, 3, 4, 5] slos: - sloType: "lag trend" - threshold: 2000 prometheusUrl: "http://prometheus-operated:9090" - externalSloUrl: "http://localhost:80/evaluate-slope" offset: 0 - warmup: 60 # in seconds + properties: + threshold: 2000 + externalSloUrl: "http://localhost:80/evaluate-slope" + warmup: 60 # in seconds + # - sloType: "lag trend percent" + # prometheusUrl: "http://localhost:9090" + # offset: 0 + # properties: + # percent: 5 + # externalSloUrl: "http://localhost:80/evaluate-slope" + # warmup: 60 # in seconds execution: strategy: "LinearSearch" duration: 300 # in seconds diff --git a/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt b/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt index 63b554e6a023d9b39b16c8a130b7fbf00926acdd..f2dda487d390c5f771e4f47c0f9c7ebf2cf971e7 100644 --- a/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt +++ b/theodolite/src/main/kotlin/theodolite/benchmark/BenchmarkExecution.kt @@ -62,11 +62,9 @@ class BenchmarkExecution : KubernetesResource { @RegisterForReflection class Slo : KubernetesResource { lateinit var sloType: String - var threshold by Delegates.notNull<Int>() lateinit var prometheusUrl: String - lateinit var externalSloUrl: String var offset by Delegates.notNull<Int>() - var warmup by Delegates.notNull<Int>() + lateinit var properties: MutableMap<String, String> } /** diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt b/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt index 9037b994d359dbfa67e099d311ca63707dad7c26..777ea1c0ed43ac3af244dc0aaf770c69c11718cf 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/AnalysisExecutor.kt @@ -64,9 +64,8 @@ class AnalysisExecutor( val sloChecker = SloCheckerFactory().create( sloType = slo.sloType, - externalSlopeURL = slo.externalSloUrl, - threshold = slo.threshold, - warmup = slo.warmup + properties = slo.properties, + load = load ) result = sloChecker.evaluate(prometheusData) diff --git a/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt b/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt index 20c421acdfcd76f5d2ebc2ab2c30142bcca3841a..394f4c9a4bd9cc690d874f501550c66e792ac7e5 100644 --- a/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt +++ b/theodolite/src/main/kotlin/theodolite/evaluation/SloCheckerFactory.kt @@ -1,5 +1,7 @@ package theodolite.evaluation +import theodolite.util.LoadDimension + /** * Factory used to potentially create different [SloChecker]s. * Supports: lag type. @@ -20,16 +22,28 @@ class SloCheckerFactory { */ fun create( sloType: String, - externalSlopeURL: String, - threshold: Int, - warmup: Int + properties: MutableMap<String, String>, + load: LoadDimension ): SloChecker { return when (sloType) { "lag trend" -> ExternalSloChecker( - externalSlopeURL = externalSlopeURL, - threshold = threshold, - warmup = warmup + externalSlopeURL = properties["externalSloUrl"] ?: throw IllegalArgumentException("externalSloUrl expected"), + threshold = properties["threshold"]?.toInt() ?: throw IllegalArgumentException("threshold expected"), + warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected") ) + "lag trend percent" -> { + var thresholdPercent = properties["percent"]?.toInt() ?: throw IllegalArgumentException("percent for threshold expected") + if (thresholdPercent < 0 || thresholdPercent > 100) { + throw IllegalArgumentException("Threshold percent need to be an Int in the range between 0 and 100 (inclusive)") + } + var threshold = (load.get() / 100.0 * thresholdPercent).toInt() + + ExternalSloChecker( + externalSlopeURL = properties["externalSloUrl"] ?: throw IllegalArgumentException("externalSloUrl expected"), + threshold = threshold, + warmup = properties["warmup"]?.toInt() ?: throw IllegalArgumentException("warmup expected") + ) + } else -> throw IllegalArgumentException("Slotype $sloType not found.") } }