Skip to content
Snippets Groups Projects
Commit 9fe60327 authored by Lorenz Boguhn's avatar Lorenz Boguhn Committed by Lorenz Boguhn
Browse files

Renaming sloImpl to ExternalSlo

parent e6d25058
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!92Introduce experiment evaluation,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
...@@ -6,7 +6,7 @@ import java.net.ConnectException ...@@ -6,7 +6,7 @@ import java.net.ConnectException
import java.time.Duration import java.time.Duration
import java.time.Instant import java.time.Instant
class SloCheckerImpl( class ExternalSLOChecker(
private val prometheusURL: String, private val prometheusURL: String,
private val query: String, private val query: String,
private val externalSlopeURL: String, private val externalSlopeURL: String,
......
...@@ -3,7 +3,7 @@ package theodolite.execution ...@@ -3,7 +3,7 @@ package theodolite.execution
import mu.KotlinLogging import mu.KotlinLogging
import theodolite.benchmark.Benchmark import theodolite.benchmark.Benchmark
import theodolite.benchmark.BenchmarkExecution import theodolite.benchmark.BenchmarkExecution
import theodolite.evaluation.SloCheckerImpl import theodolite.evaluation.ExternalSLOChecker
import theodolite.util.ConfigurationOverride import theodolite.util.ConfigurationOverride
import theodolite.util.LoadDimension import theodolite.util.LoadDimension
import theodolite.util.Resource import theodolite.util.Resource
...@@ -30,7 +30,7 @@ class BenchmarkExecutorImpl( ...@@ -30,7 +30,7 @@ class BenchmarkExecutorImpl(
var result = false var result = false
try { try {
result = SloCheckerImpl( result = ExternalSLOChecker(
slo.prometheusUrl, slo.prometheusUrl,
"sum by(group)(kafka_consumergroup_group_lag >= 0)", "sum by(group)(kafka_consumergroup_group_lag >= 0)",
slo.externalSloUrl, slo.externalSloUrl,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment