diff --git a/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/AnalysisExecutor.kt b/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/AnalysisExecutor.kt
index 767be66a8adcf447e8616d4ec362e904443e27d5..99d3c9ea39c101303b0d1fabf7af82d06e7ecb14 100644
--- a/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/AnalysisExecutor.kt
+++ b/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/AnalysisExecutor.kt
@@ -26,7 +26,7 @@ class AnalysisExecutor(
 
     /**
      *  Analyses an experiment via prometheus data.
-     *  First fetches data from prometheus, then documents them and afterwards evaluate it via a [slo].
+     *  First fetches data from prometheus, then documents them and afterward evaluate it via a [slo].
      *  @param load of the experiment.
      *  @param resource of the experiment.
      *  @param executionIntervals list of start and end points of experiments
@@ -41,6 +41,7 @@ class AnalysisExecutor(
             val fileURL = "${resultsFolder}exp${executionId}_${load}_${resource}_${slo.sloType.toSlug()}"
 
             val stepSize = slo.properties["promQLStepSeconds"]?.toLong()?.let { Duration.ofSeconds(it) } ?: DEFAULT_STEP_SIZE
+            val onlyFirstMetric = slo.properties["takeOnlyFirstMetric"]?.toBoolean() ?: true
 
             val prometheusData = executionIntervals
                 .map { interval ->
@@ -55,7 +56,7 @@ class AnalysisExecutor(
             prometheusData.forEach{ data ->
                 ioHandler.writeToCSVFile(
                     fileURL = "${fileURL}_${slo.name}_${repetitionCounter++}",
-                    data = data.getResultAsList(),
+                    data = data.getResultAsList(onlyFirst = onlyFirstMetric),
                     columns = listOf("labels", "timestamp", "value")
                 )
             }
diff --git a/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponse.kt b/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponse.kt
index dfdfa93fa0685816e3cdb936dfc3e0b782bf3cd9..811a7d9e408b934965204e5da456d5720094cdc7 100644
--- a/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponse.kt
+++ b/theodolite/src/main/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponse.kt
@@ -24,20 +24,24 @@ data class PrometheusResponse(
      * The format of the returned list is: `[[ group, timestamp, value ], [ group, timestamp, value ], ... ]`
      */
     @JsonIgnore
-    fun getResultAsList(): List<List<String>> {
-        val group = data?.result?.get(0)?.metric?.toString()!!
-        val values = data?.result?.get(0)?.values
-        val result = mutableListOf<List<String>>()
+    fun getResultAsList(onlyFirst: Boolean = true): List<List<String>> {
+        val resultsList = mutableListOf<List<String>>()
 
-        if (values != null) {
-            for (value in values) {
-                val valueList = value as List<*>
-                val timestamp = (valueList[0] as Double).toLong().toString()
-                val resultValue = valueList[1].toString()
-                result.add(listOf(group, timestamp, resultValue))
+        val results = data?.result ?: throw IllegalStateException("No 'results' available in the Prometheus response.")
+        for (result in results.subList(0, if (onlyFirst && results.isNotEmpty()) 1 else results.size)) {
+            val group = result.metric.toString()
+            val values = result.values
+
+            if (values != null) {
+                for (value in values) {
+                    val valueList = value as List<*>
+                    val timestamp = (valueList[0] as Number).toLong().toString()
+                    val resultValue = valueList[1].toString()
+                    resultsList.add(listOf(group, timestamp, resultValue))
+                }
             }
         }
-        return Collections.unmodifiableList(result)
+        return resultsList.toList()
     }
 }
 
diff --git a/theodolite/src/test/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponseTest.kt b/theodolite/src/test/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponseTest.kt
new file mode 100644
index 0000000000000000000000000000000000000000..b1c62ecc682cb3f1f0a67090dcf8a5d12cb54209
--- /dev/null
+++ b/theodolite/src/test/kotlin/rocks/theodolite/kubernetes/slo/PrometheusResponseTest.kt
@@ -0,0 +1,75 @@
+package rocks.theodolite.kubernetes.slo
+
+import com.fasterxml.jackson.databind.ObjectMapper
+import org.junit.jupiter.api.Test
+
+import org.junit.jupiter.api.Assertions.*
+
+class PrometheusResponseTest {
+
+    private val objectMapper = ObjectMapper()
+
+    @Test
+    fun testSingleTimeseriesListConvert() {
+        val prometheusResponse = readSingleTimeseriesResponse()
+        val resultsList = prometheusResponse.getResultAsList()
+        assertEquals(126, resultsList.size)
+    }
+
+    @Test
+    fun testSingleTimeseriesWithNoMillisListConvert() {
+        val prometheusResponse = readSingleTimeseriesNoMillisResponse()
+        val resultsList = prometheusResponse.getResultAsList()
+        assertEquals(11, resultsList.size)
+    }
+
+    @Test
+    fun testNoTimeseriesListConvert() {
+        val prometheusResponse = readNoTimeseriesResponse()
+        val resultsList = prometheusResponse.getResultAsList()
+        assertEquals(0, resultsList.size)
+    }
+
+    @Test
+    fun testMultiTimeseriesListConvertWithOnlyFirst() {
+        val prometheusResponse = readMultiTimeseriesResponse()
+        val resultsList = prometheusResponse.getResultAsList()
+        assertEquals(17, resultsList.size)
+    }
+
+    @Test
+    fun testMultiTimeseriesListConvertWithoutOnlyFirst() {
+        val prometheusResponse = readMultiTimeseriesResponse()
+        val resultsList = prometheusResponse.getResultAsList(onlyFirst = false)
+        assertEquals(1700, resultsList.size)
+    }
+
+    private fun readMultiTimeseriesResponse(): PrometheusResponse {
+        return objectMapper.readValue(
+                javaClass.getResourceAsStream("/prometheus-response/multi-timeseries.json"),
+                PrometheusResponse::class.java
+        )
+    }
+
+    private fun readSingleTimeseriesResponse(): PrometheusResponse {
+        return objectMapper.readValue(
+                javaClass.getResourceAsStream("/prometheus-response/single-timeseries.json"),
+                PrometheusResponse::class.java
+        )
+    }
+
+    private fun readSingleTimeseriesNoMillisResponse(): PrometheusResponse {
+        return objectMapper.readValue(
+                javaClass.getResourceAsStream("/prometheus-response/single-timeseries-nomillis.json"),
+                PrometheusResponse::class.java
+        )
+    }
+
+    private fun readNoTimeseriesResponse(): PrometheusResponse {
+        return objectMapper.readValue(
+                javaClass.getResourceAsStream("/prometheus-response/empty-timeseries.json"),
+                PrometheusResponse::class.java
+        )
+    }
+
+}
\ No newline at end of file
diff --git a/theodolite/src/test/resources/prometheus-response/empty-timeseries.json b/theodolite/src/test/resources/prometheus-response/empty-timeseries.json
new file mode 100644
index 0000000000000000000000000000000000000000..2bf06e2e48e137f32ec4dd301529e30752b93012
--- /dev/null
+++ b/theodolite/src/test/resources/prometheus-response/empty-timeseries.json
@@ -0,0 +1,8 @@
+{
+  "status": "success",
+  "data": {
+    "resultType": "matrix",
+    "result": [
+    ]
+  }
+}
\ No newline at end of file
diff --git a/theodolite/src/test/resources/prometheus-response/multi-timeseries.json b/theodolite/src/test/resources/prometheus-response/multi-timeseries.json
new file mode 100644
index 0000000000000000000000000000000000000000..1708f0db302e19fbb7c540a1b94227e1f6e0a912
--- /dev/null
+++ b/theodolite/src/test/resources/prometheus-response/multi-timeseries.json
@@ -0,0 +1,8308 @@
+{
+  "status": "success",
+  "data": {
+    "resultType": "matrix",
+    "result": [
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "0",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2002"
+          ],
+          [
+            1702453445.975,
+            "2000"
+          ],
+          [
+            1702453446.975,
+            "2000"
+          ],
+          [
+            1702453447.975,
+            "2000"
+          ],
+          [
+            1702453448.975,
+            "2012"
+          ],
+          [
+            1702453449.975,
+            "3012"
+          ],
+          [
+            1702453450.975,
+            "3015"
+          ],
+          [
+            1702453451.975,
+            "2006"
+          ],
+          [
+            1702453452.975,
+            "4010"
+          ],
+          [
+            1702453453.975,
+            "2004"
+          ],
+          [
+            1702453454.975,
+            "3165"
+          ],
+          [
+            1702453455.975,
+            "3838"
+          ],
+          [
+            1702453456.975,
+            "4013"
+          ],
+          [
+            1702453457.975,
+            "3014"
+          ],
+          [
+            1702453458.975,
+            "4013"
+          ],
+          [
+            1702453459.975,
+            "4003"
+          ],
+          [
+            1702453460.975,
+            "3995"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "1",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3998"
+          ],
+          [
+            1702453445.975,
+            "2996"
+          ],
+          [
+            1702453446.975,
+            "1999"
+          ],
+          [
+            1702453447.975,
+            "2995"
+          ],
+          [
+            1702453448.975,
+            "3005"
+          ],
+          [
+            1702453449.975,
+            "2996"
+          ],
+          [
+            1702453450.975,
+            "2006"
+          ],
+          [
+            1702453451.975,
+            "3012"
+          ],
+          [
+            1702453452.975,
+            "3015"
+          ],
+          [
+            1702453453.975,
+            "2991"
+          ],
+          [
+            1702453454.975,
+            "4999"
+          ],
+          [
+            1702453455.975,
+            "4013"
+          ],
+          [
+            1702453456.975,
+            "3982"
+          ],
+          [
+            1702453457.975,
+            "5013"
+          ],
+          [
+            1702453458.975,
+            "3009"
+          ],
+          [
+            1702453459.975,
+            "5005"
+          ],
+          [
+            1702453460.975,
+            "4999"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "10",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2998"
+          ],
+          [
+            1702453445.975,
+            "2007"
+          ],
+          [
+            1702453446.975,
+            "3010"
+          ],
+          [
+            1702453447.975,
+            "2007"
+          ],
+          [
+            1702453448.975,
+            "2003"
+          ],
+          [
+            1702453449.975,
+            "2997"
+          ],
+          [
+            1702453450.975,
+            "2996"
+          ],
+          [
+            1702453451.975,
+            "3002"
+          ],
+          [
+            1702453452.975,
+            "3008"
+          ],
+          [
+            1702453453.975,
+            "2997"
+          ],
+          [
+            1702453454.975,
+            "5002"
+          ],
+          [
+            1702453455.975,
+            "4995"
+          ],
+          [
+            1702453456.975,
+            "4008"
+          ],
+          [
+            1702453457.975,
+            "3984"
+          ],
+          [
+            1702453458.975,
+            "4019"
+          ],
+          [
+            1702453459.975,
+            "5010"
+          ],
+          [
+            1702453460.975,
+            "5008"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "11",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3829"
+          ],
+          [
+            1702453445.975,
+            "2542"
+          ],
+          [
+            1702453446.975,
+            "3705"
+          ],
+          [
+            1702453447.975,
+            "4152"
+          ],
+          [
+            1702453448.975,
+            "2895"
+          ],
+          [
+            1702453449.975,
+            "3276"
+          ],
+          [
+            1702453450.975,
+            "2986"
+          ],
+          [
+            1702453451.975,
+            "2479"
+          ],
+          [
+            1702453452.975,
+            "3548"
+          ],
+          [
+            1702453453.975,
+            "2897"
+          ],
+          [
+            1702453454.975,
+            "2702"
+          ],
+          [
+            1702453455.975,
+            "2767"
+          ],
+          [
+            1702453456.975,
+            "3179"
+          ],
+          [
+            1702453457.975,
+            "2800"
+          ],
+          [
+            1702453458.975,
+            "2821"
+          ],
+          [
+            1702453459.975,
+            "3368"
+          ],
+          [
+            1702453460.975,
+            "3063"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "12",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3004"
+          ],
+          [
+            1702453445.975,
+            "3008"
+          ],
+          [
+            1702453446.975,
+            "4021"
+          ],
+          [
+            1702453447.975,
+            "2005"
+          ],
+          [
+            1702453448.975,
+            "3998"
+          ],
+          [
+            1702453449.975,
+            "4003"
+          ],
+          [
+            1702453450.975,
+            "4001"
+          ],
+          [
+            1702453451.975,
+            "3998"
+          ],
+          [
+            1702453452.975,
+            "5003"
+          ],
+          [
+            1702453453.975,
+            "4004"
+          ],
+          [
+            1702453454.975,
+            "4998"
+          ],
+          [
+            1702453455.975,
+            "6477"
+          ],
+          [
+            1702453456.975,
+            "3041"
+          ],
+          [
+            1702453457.975,
+            "2897"
+          ],
+          [
+            1702453458.975,
+            "2621"
+          ],
+          [
+            1702453459.975,
+            "3593"
+          ],
+          [
+            1702453460.975,
+            "3399"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "13",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2001"
+          ],
+          [
+            1702453445.975,
+            "4005"
+          ],
+          [
+            1702453446.975,
+            "3000"
+          ],
+          [
+            1702453447.975,
+            "3997"
+          ],
+          [
+            1702453448.975,
+            "2003"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "3004"
+          ],
+          [
+            1702453451.975,
+            "4013"
+          ],
+          [
+            1702453452.975,
+            "4006"
+          ],
+          [
+            1702453453.975,
+            "3008"
+          ],
+          [
+            1702453454.975,
+            "4015"
+          ],
+          [
+            1702453455.975,
+            "5992"
+          ],
+          [
+            1702453456.975,
+            "4016"
+          ],
+          [
+            1702453457.975,
+            "5008"
+          ],
+          [
+            1702453458.975,
+            "7343"
+          ],
+          [
+            1702453459.975,
+            "2984"
+          ],
+          [
+            1702453460.975,
+            "2481"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "14",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1002"
+          ],
+          [
+            1702453445.975,
+            "1997"
+          ],
+          [
+            1702453446.975,
+            "2007"
+          ],
+          [
+            1702453447.975,
+            "1999"
+          ],
+          [
+            1702453448.975,
+            "2006"
+          ],
+          [
+            1702453449.975,
+            "2005"
+          ],
+          [
+            1702453450.975,
+            "2005"
+          ],
+          [
+            1702453451.975,
+            "2008"
+          ],
+          [
+            1702453452.975,
+            "2101"
+          ],
+          [
+            1702453453.975,
+            "3924"
+          ],
+          [
+            1702453454.975,
+            "2994"
+          ],
+          [
+            1702453455.975,
+            "4007"
+          ],
+          [
+            1702453456.975,
+            "2007"
+          ],
+          [
+            1702453457.975,
+            "3000"
+          ],
+          [
+            1702453458.975,
+            "2989"
+          ],
+          [
+            1702453459.975,
+            "3996"
+          ],
+          [
+            1702453460.975,
+            "3012"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "15",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2921"
+          ],
+          [
+            1702453445.975,
+            "3004"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "1996"
+          ],
+          [
+            1702453448.975,
+            "3013"
+          ],
+          [
+            1702453449.975,
+            "1997"
+          ],
+          [
+            1702453450.975,
+            "3009"
+          ],
+          [
+            1702453451.975,
+            "4994"
+          ],
+          [
+            1702453452.975,
+            "5018"
+          ],
+          [
+            1702453453.975,
+            "4008"
+          ],
+          [
+            1702453454.975,
+            "5008"
+          ],
+          [
+            1702453455.975,
+            "5022"
+          ],
+          [
+            1702453456.975,
+            "2994"
+          ],
+          [
+            1702453457.975,
+            "5277"
+          ],
+          [
+            1702453458.975,
+            "2949"
+          ],
+          [
+            1702453459.975,
+            "3255"
+          ],
+          [
+            1702453460.975,
+            "3128"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "16",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2968"
+          ],
+          [
+            1702453445.975,
+            "3263"
+          ],
+          [
+            1702453446.975,
+            "2942"
+          ],
+          [
+            1702453447.975,
+            "3006"
+          ],
+          [
+            1702453448.975,
+            "2353"
+          ],
+          [
+            1702453449.975,
+            "3118"
+          ],
+          [
+            1702453450.975,
+            "3394"
+          ],
+          [
+            1702453451.975,
+            "2502"
+          ],
+          [
+            1702453452.975,
+            "2626"
+          ],
+          [
+            1702453453.975,
+            "3000"
+          ],
+          [
+            1702453454.975,
+            "3116"
+          ],
+          [
+            1702453455.975,
+            "2557"
+          ],
+          [
+            1702453456.975,
+            "2782"
+          ],
+          [
+            1702453457.975,
+            "3102"
+          ],
+          [
+            1702453458.975,
+            "2870"
+          ],
+          [
+            1702453459.975,
+            "2872"
+          ],
+          [
+            1702453460.975,
+            "3155"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "17",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3009"
+          ],
+          [
+            1702453445.975,
+            "3004"
+          ],
+          [
+            1702453446.975,
+            "3004"
+          ],
+          [
+            1702453447.975,
+            "2005"
+          ],
+          [
+            1702453448.975,
+            "3010"
+          ],
+          [
+            1702453449.975,
+            "3004"
+          ],
+          [
+            1702453450.975,
+            "4009"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "3999"
+          ],
+          [
+            1702453453.975,
+            "4008"
+          ],
+          [
+            1702453454.975,
+            "5004"
+          ],
+          [
+            1702453455.975,
+            "5010"
+          ],
+          [
+            1702453456.975,
+            "3670"
+          ],
+          [
+            1702453457.975,
+            "4333"
+          ],
+          [
+            1702453458.975,
+            "5025"
+          ],
+          [
+            1702453459.975,
+            "5003"
+          ],
+          [
+            1702453460.975,
+            "4572"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "18",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2007"
+          ],
+          [
+            1702453445.975,
+            "3002"
+          ],
+          [
+            1702453446.975,
+            "1000"
+          ],
+          [
+            1702453447.975,
+            "3000"
+          ],
+          [
+            1702453448.975,
+            "2005"
+          ],
+          [
+            1702453449.975,
+            "2998"
+          ],
+          [
+            1702453450.975,
+            "3014"
+          ],
+          [
+            1702453451.975,
+            "3007"
+          ],
+          [
+            1702453452.975,
+            "3011"
+          ],
+          [
+            1702453453.975,
+            "3004"
+          ],
+          [
+            1702453454.975,
+            "3006"
+          ],
+          [
+            1702453455.975,
+            "3996"
+          ],
+          [
+            1702453456.975,
+            "3006"
+          ],
+          [
+            1702453457.975,
+            "4011"
+          ],
+          [
+            1702453458.975,
+            "2996"
+          ],
+          [
+            1702453459.975,
+            "5008"
+          ],
+          [
+            1702453460.975,
+            "3006"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "19",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3005"
+          ],
+          [
+            1702453445.975,
+            "2994"
+          ],
+          [
+            1702453446.975,
+            "3005"
+          ],
+          [
+            1702453447.975,
+            "2003"
+          ],
+          [
+            1702453448.975,
+            "2005"
+          ],
+          [
+            1702453449.975,
+            "4008"
+          ],
+          [
+            1702453450.975,
+            "3000"
+          ],
+          [
+            1702453451.975,
+            "3006"
+          ],
+          [
+            1702453452.975,
+            "3011"
+          ],
+          [
+            1702453453.975,
+            "3005"
+          ],
+          [
+            1702453454.975,
+            "4986"
+          ],
+          [
+            1702453455.975,
+            "4012"
+          ],
+          [
+            1702453456.975,
+            "3992"
+          ],
+          [
+            1702453457.975,
+            "5986"
+          ],
+          [
+            1702453458.975,
+            "3999"
+          ],
+          [
+            1702453459.975,
+            "5009"
+          ],
+          [
+            1702453460.975,
+            "5021"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "2",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3005"
+          ],
+          [
+            1702453445.975,
+            "3295"
+          ],
+          [
+            1702453446.975,
+            "3106"
+          ],
+          [
+            1702453447.975,
+            "3462"
+          ],
+          [
+            1702453448.975,
+            "2716"
+          ],
+          [
+            1702453449.975,
+            "3192"
+          ],
+          [
+            1702453450.975,
+            "2673"
+          ],
+          [
+            1702453451.975,
+            "2636"
+          ],
+          [
+            1702453452.975,
+            "3231"
+          ],
+          [
+            1702453453.975,
+            "2917"
+          ],
+          [
+            1702453454.975,
+            "3386"
+          ],
+          [
+            1702453455.975,
+            "3066"
+          ],
+          [
+            1702453456.975,
+            "2997"
+          ],
+          [
+            1702453457.975,
+            "2736"
+          ],
+          [
+            1702453458.975,
+            "3077"
+          ],
+          [
+            1702453459.975,
+            "3633"
+          ],
+          [
+            1702453460.975,
+            "3519"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "20",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3003"
+          ],
+          [
+            1702453445.975,
+            "3335"
+          ],
+          [
+            1702453446.975,
+            "2701"
+          ],
+          [
+            1702453447.975,
+            "3644"
+          ],
+          [
+            1702453448.975,
+            "3490"
+          ],
+          [
+            1702453449.975,
+            "2534"
+          ],
+          [
+            1702453450.975,
+            "2916"
+          ],
+          [
+            1702453451.975,
+            "2619"
+          ],
+          [
+            1702453452.975,
+            "3426"
+          ],
+          [
+            1702453453.975,
+            "2576"
+          ],
+          [
+            1702453454.975,
+            "3650"
+          ],
+          [
+            1702453455.975,
+            "3461"
+          ],
+          [
+            1702453456.975,
+            "3107"
+          ],
+          [
+            1702453457.975,
+            "2834"
+          ],
+          [
+            1702453458.975,
+            "2601"
+          ],
+          [
+            1702453459.975,
+            "3284"
+          ],
+          [
+            1702453460.975,
+            "3341"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "21",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3007"
+          ],
+          [
+            1702453445.975,
+            "3004"
+          ],
+          [
+            1702453446.975,
+            "4008"
+          ],
+          [
+            1702453447.975,
+            "2009"
+          ],
+          [
+            1702453448.975,
+            "3994"
+          ],
+          [
+            1702453449.975,
+            "3994"
+          ],
+          [
+            1702453450.975,
+            "4012"
+          ],
+          [
+            1702453451.975,
+            "3996"
+          ],
+          [
+            1702453452.975,
+            "4984"
+          ],
+          [
+            1702453453.975,
+            "4010"
+          ],
+          [
+            1702453454.975,
+            "5013"
+          ],
+          [
+            1702453455.975,
+            "7011"
+          ],
+          [
+            1702453456.975,
+            "3316"
+          ],
+          [
+            1702453457.975,
+            "3266"
+          ],
+          [
+            1702453458.975,
+            "2996"
+          ],
+          [
+            1702453459.975,
+            "3125"
+          ],
+          [
+            1702453460.975,
+            "2865"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "22",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2003"
+          ],
+          [
+            1702453445.975,
+            "4002"
+          ],
+          [
+            1702453446.975,
+            "2996"
+          ],
+          [
+            1702453447.975,
+            "5014"
+          ],
+          [
+            1702453448.975,
+            "1998"
+          ],
+          [
+            1702453449.975,
+            "2994"
+          ],
+          [
+            1702453450.975,
+            "3011"
+          ],
+          [
+            1702453451.975,
+            "3013"
+          ],
+          [
+            1702453452.975,
+            "5007"
+          ],
+          [
+            1702453453.975,
+            "3990"
+          ],
+          [
+            1702453454.975,
+            "4010"
+          ],
+          [
+            1702453455.975,
+            "5132"
+          ],
+          [
+            1702453456.975,
+            "4876"
+          ],
+          [
+            1702453457.975,
+            "3885"
+          ],
+          [
+            1702453458.975,
+            "3363"
+          ],
+          [
+            1702453459.975,
+            "3365"
+          ],
+          [
+            1702453460.975,
+            "2973"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "23",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1953"
+          ],
+          [
+            1702453445.975,
+            "2004"
+          ],
+          [
+            1702453446.975,
+            "2004"
+          ],
+          [
+            1702453447.975,
+            "2009"
+          ],
+          [
+            1702453448.975,
+            "1998"
+          ],
+          [
+            1702453449.975,
+            "1989"
+          ],
+          [
+            1702453450.975,
+            "1999"
+          ],
+          [
+            1702453451.975,
+            "2001"
+          ],
+          [
+            1702453452.975,
+            "3002"
+          ],
+          [
+            1702453453.975,
+            "2999"
+          ],
+          [
+            1702453454.975,
+            "3007"
+          ],
+          [
+            1702453455.975,
+            "5002"
+          ],
+          [
+            1702453456.975,
+            "1997"
+          ],
+          [
+            1702453457.975,
+            "3004"
+          ],
+          [
+            1702453458.975,
+            "3007"
+          ],
+          [
+            1702453459.975,
+            "4016"
+          ],
+          [
+            1702453460.975,
+            "3008"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "24",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3000"
+          ],
+          [
+            1702453445.975,
+            "3014"
+          ],
+          [
+            1702453446.975,
+            "4016"
+          ],
+          [
+            1702453447.975,
+            "2008"
+          ],
+          [
+            1702453448.975,
+            "4006"
+          ],
+          [
+            1702453449.975,
+            "2998"
+          ],
+          [
+            1702453450.975,
+            "2998"
+          ],
+          [
+            1702453451.975,
+            "3012"
+          ],
+          [
+            1702453452.975,
+            "5003"
+          ],
+          [
+            1702453453.975,
+            "4016"
+          ],
+          [
+            1702453454.975,
+            "5023"
+          ],
+          [
+            1702453455.975,
+            "4077"
+          ],
+          [
+            1702453456.975,
+            "3955"
+          ],
+          [
+            1702453457.975,
+            "5496"
+          ],
+          [
+            1702453458.975,
+            "2423"
+          ],
+          [
+            1702453459.975,
+            "3231"
+          ],
+          [
+            1702453460.975,
+            "2960"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "25",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2873"
+          ],
+          [
+            1702453445.975,
+            "3543"
+          ],
+          [
+            1702453446.975,
+            "3290"
+          ],
+          [
+            1702453447.975,
+            "2727"
+          ],
+          [
+            1702453448.975,
+            "2915"
+          ],
+          [
+            1702453449.975,
+            "3324"
+          ],
+          [
+            1702453450.975,
+            "2796"
+          ],
+          [
+            1702453451.975,
+            "3088"
+          ],
+          [
+            1702453452.975,
+            "3124"
+          ],
+          [
+            1702453453.975,
+            "3060"
+          ],
+          [
+            1702453454.975,
+            "3037"
+          ],
+          [
+            1702453455.975,
+            "3066"
+          ],
+          [
+            1702453456.975,
+            "2388"
+          ],
+          [
+            1702453457.975,
+            "2606"
+          ],
+          [
+            1702453458.975,
+            "2888"
+          ],
+          [
+            1702453459.975,
+            "2819"
+          ],
+          [
+            1702453460.975,
+            "2776"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "26",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1996"
+          ],
+          [
+            1702453445.975,
+            "3009"
+          ],
+          [
+            1702453446.975,
+            "3015"
+          ],
+          [
+            1702453447.975,
+            "1987"
+          ],
+          [
+            1702453448.975,
+            "3014"
+          ],
+          [
+            1702453449.975,
+            "3010"
+          ],
+          [
+            1702453450.975,
+            "3003"
+          ],
+          [
+            1702453451.975,
+            "4004"
+          ],
+          [
+            1702453452.975,
+            "4012"
+          ],
+          [
+            1702453453.975,
+            "3990"
+          ],
+          [
+            1702453454.975,
+            "4022"
+          ],
+          [
+            1702453455.975,
+            "5016"
+          ],
+          [
+            1702453456.975,
+            "3004"
+          ],
+          [
+            1702453457.975,
+            "5005"
+          ],
+          [
+            1702453458.975,
+            "5013"
+          ],
+          [
+            1702453459.975,
+            "5014"
+          ],
+          [
+            1702453460.975,
+            "5696"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "27",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1099"
+          ],
+          [
+            1702453445.975,
+            "2908"
+          ],
+          [
+            1702453446.975,
+            "1000"
+          ],
+          [
+            1702453447.975,
+            "3009"
+          ],
+          [
+            1702453448.975,
+            "1005"
+          ],
+          [
+            1702453449.975,
+            "3010"
+          ],
+          [
+            1702453450.975,
+            "3008"
+          ],
+          [
+            1702453451.975,
+            "3012"
+          ],
+          [
+            1702453452.975,
+            "3005"
+          ],
+          [
+            1702453453.975,
+            "3010"
+          ],
+          [
+            1702453454.975,
+            "3001"
+          ],
+          [
+            1702453455.975,
+            "2994"
+          ],
+          [
+            1702453456.975,
+            "3999"
+          ],
+          [
+            1702453457.975,
+            "3014"
+          ],
+          [
+            1702453458.975,
+            "3998"
+          ],
+          [
+            1702453459.975,
+            "4458"
+          ],
+          [
+            1702453460.975,
+            "3542"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "28",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3003"
+          ],
+          [
+            1702453445.975,
+            "1999"
+          ],
+          [
+            1702453446.975,
+            "3010"
+          ],
+          [
+            1702453447.975,
+            "2003"
+          ],
+          [
+            1702453448.975,
+            "1994"
+          ],
+          [
+            1702453449.975,
+            "3002"
+          ],
+          [
+            1702453450.975,
+            "1998"
+          ],
+          [
+            1702453451.975,
+            "3013"
+          ],
+          [
+            1702453452.975,
+            "2999"
+          ],
+          [
+            1702453453.975,
+            "4016"
+          ],
+          [
+            1702453454.975,
+            "4014"
+          ],
+          [
+            1702453455.975,
+            "5002"
+          ],
+          [
+            1702453456.975,
+            "2993"
+          ],
+          [
+            1702453457.975,
+            "3993"
+          ],
+          [
+            1702453458.975,
+            "3997"
+          ],
+          [
+            1702453459.975,
+            "5006"
+          ],
+          [
+            1702453460.975,
+            "4997"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "29",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3894"
+          ],
+          [
+            1702453445.975,
+            "2534"
+          ],
+          [
+            1702453446.975,
+            "3013"
+          ],
+          [
+            1702453447.975,
+            "3441"
+          ],
+          [
+            1702453448.975,
+            "3129"
+          ],
+          [
+            1702453449.975,
+            "3024"
+          ],
+          [
+            1702453450.975,
+            "2552"
+          ],
+          [
+            1702453451.975,
+            "2821"
+          ],
+          [
+            1702453452.975,
+            "3655"
+          ],
+          [
+            1702453453.975,
+            "2280"
+          ],
+          [
+            1702453454.975,
+            "3448"
+          ],
+          [
+            1702453455.975,
+            "3021"
+          ],
+          [
+            1702453456.975,
+            "2708"
+          ],
+          [
+            1702453457.975,
+            "2848"
+          ],
+          [
+            1702453458.975,
+            "2840"
+          ],
+          [
+            1702453459.975,
+            "3458"
+          ],
+          [
+            1702453460.975,
+            "3323"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "3",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3010"
+          ],
+          [
+            1702453445.975,
+            "2991"
+          ],
+          [
+            1702453446.975,
+            "3010"
+          ],
+          [
+            1702453447.975,
+            "2997"
+          ],
+          [
+            1702453448.975,
+            "4012"
+          ],
+          [
+            1702453449.975,
+            "4012"
+          ],
+          [
+            1702453450.975,
+            "4003"
+          ],
+          [
+            1702453451.975,
+            "5010"
+          ],
+          [
+            1702453452.975,
+            "4009"
+          ],
+          [
+            1702453453.975,
+            "3374"
+          ],
+          [
+            1702453454.975,
+            "2868"
+          ],
+          [
+            1702453455.975,
+            "3860"
+          ],
+          [
+            1702453456.975,
+            "3262"
+          ],
+          [
+            1702453457.975,
+            "3736"
+          ],
+          [
+            1702453458.975,
+            "3336"
+          ],
+          [
+            1702453459.975,
+            "3441"
+          ],
+          [
+            1702453460.975,
+            "3113"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "30",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3006"
+          ],
+          [
+            1702453445.975,
+            "3014"
+          ],
+          [
+            1702453446.975,
+            "4004"
+          ],
+          [
+            1702453447.975,
+            "2002"
+          ],
+          [
+            1702453448.975,
+            "4020"
+          ],
+          [
+            1702453449.975,
+            "4020"
+          ],
+          [
+            1702453450.975,
+            "4004"
+          ],
+          [
+            1702453451.975,
+            "4017"
+          ],
+          [
+            1702453452.975,
+            "5000"
+          ],
+          [
+            1702453453.975,
+            "4017"
+          ],
+          [
+            1702453454.975,
+            "6020"
+          ],
+          [
+            1702453455.975,
+            "6009"
+          ],
+          [
+            1702453456.975,
+            "3168"
+          ],
+          [
+            1702453457.975,
+            "3686"
+          ],
+          [
+            1702453458.975,
+            "2790"
+          ],
+          [
+            1702453459.975,
+            "3149"
+          ],
+          [
+            1702453460.975,
+            "2875"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "31",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1993"
+          ],
+          [
+            1702453445.975,
+            "3753"
+          ],
+          [
+            1702453446.975,
+            "3269"
+          ],
+          [
+            1702453447.975,
+            "3006"
+          ],
+          [
+            1702453448.975,
+            "2013"
+          ],
+          [
+            1702453449.975,
+            "3001"
+          ],
+          [
+            1702453450.975,
+            "3013"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "5011"
+          ],
+          [
+            1702453453.975,
+            "3007"
+          ],
+          [
+            1702453454.975,
+            "4015"
+          ],
+          [
+            1702453455.975,
+            "5001"
+          ],
+          [
+            1702453456.975,
+            "4982"
+          ],
+          [
+            1702453457.975,
+            "5016"
+          ],
+          [
+            1702453458.975,
+            "6463"
+          ],
+          [
+            1702453459.975,
+            "3054"
+          ],
+          [
+            1702453460.975,
+            "2852"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "32",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1000"
+          ],
+          [
+            1702453445.975,
+            "2008"
+          ],
+          [
+            1702453446.975,
+            "2005"
+          ],
+          [
+            1702453447.975,
+            "2006"
+          ],
+          [
+            1702453448.975,
+            "1529"
+          ],
+          [
+            1702453449.975,
+            "2475"
+          ],
+          [
+            1702453450.975,
+            "1258"
+          ],
+          [
+            1702453451.975,
+            "2752"
+          ],
+          [
+            1702453452.975,
+            "2007"
+          ],
+          [
+            1702453453.975,
+            "4010"
+          ],
+          [
+            1702453454.975,
+            "3007"
+          ],
+          [
+            1702453455.975,
+            "4009"
+          ],
+          [
+            1702453456.975,
+            "2004"
+          ],
+          [
+            1702453457.975,
+            "3007"
+          ],
+          [
+            1702453458.975,
+            "2997"
+          ],
+          [
+            1702453459.975,
+            "4018"
+          ],
+          [
+            1702453460.975,
+            "3010"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "33",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3008"
+          ],
+          [
+            1702453445.975,
+            "3004"
+          ],
+          [
+            1702453446.975,
+            "3008"
+          ],
+          [
+            1702453447.975,
+            "1996"
+          ],
+          [
+            1702453448.975,
+            "3007"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "3001"
+          ],
+          [
+            1702453451.975,
+            "4016"
+          ],
+          [
+            1702453452.975,
+            "4996"
+          ],
+          [
+            1702453453.975,
+            "3997"
+          ],
+          [
+            1702453454.975,
+            "5011"
+          ],
+          [
+            1702453455.975,
+            "4005"
+          ],
+          [
+            1702453456.975,
+            "3000"
+          ],
+          [
+            1702453457.975,
+            "8078"
+          ],
+          [
+            1702453458.975,
+            "6807"
+          ],
+          [
+            1702453459.975,
+            "2960"
+          ],
+          [
+            1702453460.975,
+            "3293"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "34",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2973"
+          ],
+          [
+            1702453445.975,
+            "2958"
+          ],
+          [
+            1702453446.975,
+            "3134"
+          ],
+          [
+            1702453447.975,
+            "2623"
+          ],
+          [
+            1702453448.975,
+            "2440"
+          ],
+          [
+            1702453449.975,
+            "3234"
+          ],
+          [
+            1702453450.975,
+            "3138"
+          ],
+          [
+            1702453451.975,
+            "2746"
+          ],
+          [
+            1702453452.975,
+            "2461"
+          ],
+          [
+            1702453453.975,
+            "2604"
+          ],
+          [
+            1702453454.975,
+            "2468"
+          ],
+          [
+            1702453455.975,
+            "3026"
+          ],
+          [
+            1702453456.975,
+            "2813"
+          ],
+          [
+            1702453457.975,
+            "3396"
+          ],
+          [
+            1702453458.975,
+            "2825"
+          ],
+          [
+            1702453459.975,
+            "3373"
+          ],
+          [
+            1702453460.975,
+            "3351"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "35",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3006"
+          ],
+          [
+            1702453445.975,
+            "2999"
+          ],
+          [
+            1702453446.975,
+            "3007"
+          ],
+          [
+            1702453447.975,
+            "2010"
+          ],
+          [
+            1702453448.975,
+            "3008"
+          ],
+          [
+            1702453449.975,
+            "3008"
+          ],
+          [
+            1702453450.975,
+            "3998"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "4008"
+          ],
+          [
+            1702453453.975,
+            "3996"
+          ],
+          [
+            1702453454.975,
+            "4011"
+          ],
+          [
+            1702453455.975,
+            "5016"
+          ],
+          [
+            1702453456.975,
+            "3006"
+          ],
+          [
+            1702453457.975,
+            "5004"
+          ],
+          [
+            1702453458.975,
+            "5002"
+          ],
+          [
+            1702453459.975,
+            "5023"
+          ],
+          [
+            1702453460.975,
+            "5806"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "36",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1244"
+          ],
+          [
+            1702453445.975,
+            "2917"
+          ],
+          [
+            1702453446.975,
+            "1091"
+          ],
+          [
+            1702453447.975,
+            "3004"
+          ],
+          [
+            1702453448.975,
+            "1004"
+          ],
+          [
+            1702453449.975,
+            "3014"
+          ],
+          [
+            1702453450.975,
+            "2995"
+          ],
+          [
+            1702453451.975,
+            "2999"
+          ],
+          [
+            1702453452.975,
+            "3016"
+          ],
+          [
+            1702453453.975,
+            "3010"
+          ],
+          [
+            1702453454.975,
+            "3005"
+          ],
+          [
+            1702453455.975,
+            "3005"
+          ],
+          [
+            1702453456.975,
+            "4013"
+          ],
+          [
+            1702453457.975,
+            "3004"
+          ],
+          [
+            1702453458.975,
+            "4012"
+          ],
+          [
+            1702453459.975,
+            "4008"
+          ],
+          [
+            1702453460.975,
+            "3992"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "37",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3005"
+          ],
+          [
+            1702453445.975,
+            "2006"
+          ],
+          [
+            1702453446.975,
+            "1993"
+          ],
+          [
+            1702453447.975,
+            "2993"
+          ],
+          [
+            1702453448.975,
+            "2003"
+          ],
+          [
+            1702453449.975,
+            "2999"
+          ],
+          [
+            1702453450.975,
+            "2006"
+          ],
+          [
+            1702453451.975,
+            "3006"
+          ],
+          [
+            1702453452.975,
+            "3003"
+          ],
+          [
+            1702453453.975,
+            "3010"
+          ],
+          [
+            1702453454.975,
+            "4999"
+          ],
+          [
+            1702453455.975,
+            "4008"
+          ],
+          [
+            1702453456.975,
+            "4003"
+          ],
+          [
+            1702453457.975,
+            "4016"
+          ],
+          [
+            1702453458.975,
+            "2999"
+          ],
+          [
+            1702453459.975,
+            "5001"
+          ],
+          [
+            1702453460.975,
+            "5014"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "38",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3006"
+          ],
+          [
+            1702453445.975,
+            "3675"
+          ],
+          [
+            1702453446.975,
+            "3529"
+          ],
+          [
+            1702453447.975,
+            "3749"
+          ],
+          [
+            1702453448.975,
+            "3031"
+          ],
+          [
+            1702453449.975,
+            "2947"
+          ],
+          [
+            1702453450.975,
+            "3306"
+          ],
+          [
+            1702453451.975,
+            "2379"
+          ],
+          [
+            1702453452.975,
+            "3956"
+          ],
+          [
+            1702453453.975,
+            "2267"
+          ],
+          [
+            1702453454.975,
+            "3322"
+          ],
+          [
+            1702453455.975,
+            "2892"
+          ],
+          [
+            1702453456.975,
+            "3037"
+          ],
+          [
+            1702453457.975,
+            "2651"
+          ],
+          [
+            1702453458.975,
+            "2922"
+          ],
+          [
+            1702453459.975,
+            "3191"
+          ],
+          [
+            1702453460.975,
+            "3140"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "39",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3013"
+          ],
+          [
+            1702453445.975,
+            "3001"
+          ],
+          [
+            1702453446.975,
+            "2998"
+          ],
+          [
+            1702453447.975,
+            "3014"
+          ],
+          [
+            1702453448.975,
+            "4003"
+          ],
+          [
+            1702453449.975,
+            "3166"
+          ],
+          [
+            1702453450.975,
+            "4854"
+          ],
+          [
+            1702453451.975,
+            "3999"
+          ],
+          [
+            1702453452.975,
+            "4007"
+          ],
+          [
+            1702453453.975,
+            "4979"
+          ],
+          [
+            1702453454.975,
+            "5003"
+          ],
+          [
+            1702453455.975,
+            "4825"
+          ],
+          [
+            1702453456.975,
+            "3903"
+          ],
+          [
+            1702453457.975,
+            "3322"
+          ],
+          [
+            1702453458.975,
+            "2932"
+          ],
+          [
+            1702453459.975,
+            "3618"
+          ],
+          [
+            1702453460.975,
+            "2548"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "4",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "4003"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "4996"
+          ],
+          [
+            1702453448.975,
+            "2010"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "3002"
+          ],
+          [
+            1702453451.975,
+            "4002"
+          ],
+          [
+            1702453452.975,
+            "4016"
+          ],
+          [
+            1702453453.975,
+            "4015"
+          ],
+          [
+            1702453454.975,
+            "3141"
+          ],
+          [
+            1702453455.975,
+            "5888"
+          ],
+          [
+            1702453456.975,
+            "4008"
+          ],
+          [
+            1702453457.975,
+            "4999"
+          ],
+          [
+            1702453458.975,
+            "4532"
+          ],
+          [
+            1702453459.975,
+            "3043"
+          ],
+          [
+            1702453460.975,
+            "3033"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "40",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "5006"
+          ],
+          [
+            1702453446.975,
+            "3000"
+          ],
+          [
+            1702453447.975,
+            "3008"
+          ],
+          [
+            1702453448.975,
+            "2996"
+          ],
+          [
+            1702453449.975,
+            "2005"
+          ],
+          [
+            1702453450.975,
+            "3006"
+          ],
+          [
+            1702453451.975,
+            "3002"
+          ],
+          [
+            1702453452.975,
+            "5009"
+          ],
+          [
+            1702453453.975,
+            "3002"
+          ],
+          [
+            1702453454.975,
+            "5986"
+          ],
+          [
+            1702453455.975,
+            "4993"
+          ],
+          [
+            1702453456.975,
+            "4132"
+          ],
+          [
+            1702453457.975,
+            "3152"
+          ],
+          [
+            1702453458.975,
+            "3121"
+          ],
+          [
+            1702453459.975,
+            "3842"
+          ],
+          [
+            1702453460.975,
+            "2823"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "41",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1004"
+          ],
+          [
+            1702453445.975,
+            "2007"
+          ],
+          [
+            1702453446.975,
+            "1994"
+          ],
+          [
+            1702453447.975,
+            "2002"
+          ],
+          [
+            1702453448.975,
+            "1995"
+          ],
+          [
+            1702453449.975,
+            "2010"
+          ],
+          [
+            1702453450.975,
+            "2009"
+          ],
+          [
+            1702453451.975,
+            "2004"
+          ],
+          [
+            1702453452.975,
+            "2006"
+          ],
+          [
+            1702453453.975,
+            "4011"
+          ],
+          [
+            1702453454.975,
+            "3010"
+          ],
+          [
+            1702453455.975,
+            "4010"
+          ],
+          [
+            1702453456.975,
+            "2007"
+          ],
+          [
+            1702453457.975,
+            "3011"
+          ],
+          [
+            1702453458.975,
+            "3001"
+          ],
+          [
+            1702453459.975,
+            "4014"
+          ],
+          [
+            1702453460.975,
+            "3014"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "42",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3988"
+          ],
+          [
+            1702453445.975,
+            "2999"
+          ],
+          [
+            1702453446.975,
+            "3989"
+          ],
+          [
+            1702453447.975,
+            "2995"
+          ],
+          [
+            1702453448.975,
+            "3012"
+          ],
+          [
+            1702453449.975,
+            "2003"
+          ],
+          [
+            1702453450.975,
+            "4009"
+          ],
+          [
+            1702453451.975,
+            "3182"
+          ],
+          [
+            1702453452.975,
+            "4822"
+          ],
+          [
+            1702453453.975,
+            "3996"
+          ],
+          [
+            1702453454.975,
+            "5006"
+          ],
+          [
+            1702453455.975,
+            "3982"
+          ],
+          [
+            1702453456.975,
+            "2459"
+          ],
+          [
+            1702453457.975,
+            "3558"
+          ],
+          [
+            1702453458.975,
+            "2936"
+          ],
+          [
+            1702453459.975,
+            "2920"
+          ],
+          [
+            1702453460.975,
+            "2857"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "43",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2517"
+          ],
+          [
+            1702453445.975,
+            "2947"
+          ],
+          [
+            1702453446.975,
+            "2991"
+          ],
+          [
+            1702453447.975,
+            "2659"
+          ],
+          [
+            1702453448.975,
+            "2512"
+          ],
+          [
+            1702453449.975,
+            "2765"
+          ],
+          [
+            1702453450.975,
+            "3174"
+          ],
+          [
+            1702453451.975,
+            "2848"
+          ],
+          [
+            1702453452.975,
+            "3556"
+          ],
+          [
+            1702453453.975,
+            "2891"
+          ],
+          [
+            1702453454.975,
+            "3118"
+          ],
+          [
+            1702453455.975,
+            "3348"
+          ],
+          [
+            1702453456.975,
+            "2546"
+          ],
+          [
+            1702453457.975,
+            "2999"
+          ],
+          [
+            1702453458.975,
+            "2889"
+          ],
+          [
+            1702453459.975,
+            "2893"
+          ],
+          [
+            1702453460.975,
+            "3396"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "44",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2837"
+          ],
+          [
+            1702453445.975,
+            "3159"
+          ],
+          [
+            1702453446.975,
+            "1988"
+          ],
+          [
+            1702453447.975,
+            "3003"
+          ],
+          [
+            1702453448.975,
+            "3004"
+          ],
+          [
+            1702453449.975,
+            "4985"
+          ],
+          [
+            1702453450.975,
+            "4993"
+          ],
+          [
+            1702453451.975,
+            "5001"
+          ],
+          [
+            1702453452.975,
+            "4997"
+          ],
+          [
+            1702453453.975,
+            "4004"
+          ],
+          [
+            1702453454.975,
+            "5013"
+          ],
+          [
+            1702453455.975,
+            "4016"
+          ],
+          [
+            1702453456.975,
+            "3998"
+          ],
+          [
+            1702453457.975,
+            "3997"
+          ],
+          [
+            1702453458.975,
+            "4950"
+          ],
+          [
+            1702453459.975,
+            "3277"
+          ],
+          [
+            1702453460.975,
+            "3532"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "45",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2012"
+          ],
+          [
+            1702453445.975,
+            "1999"
+          ],
+          [
+            1702453446.975,
+            "1998"
+          ],
+          [
+            1702453447.975,
+            "2009"
+          ],
+          [
+            1702453448.975,
+            "2002"
+          ],
+          [
+            1702453449.975,
+            "3000"
+          ],
+          [
+            1702453450.975,
+            "3012"
+          ],
+          [
+            1702453451.975,
+            "2009"
+          ],
+          [
+            1702453452.975,
+            "4006"
+          ],
+          [
+            1702453453.975,
+            "3003"
+          ],
+          [
+            1702453454.975,
+            "3010"
+          ],
+          [
+            1702453455.975,
+            "4003"
+          ],
+          [
+            1702453456.975,
+            "3006"
+          ],
+          [
+            1702453457.975,
+            "4001"
+          ],
+          [
+            1702453458.975,
+            "3002"
+          ],
+          [
+            1702453459.975,
+            "5017"
+          ],
+          [
+            1702453460.975,
+            "3009"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "46",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2995"
+          ],
+          [
+            1702453445.975,
+            "2007"
+          ],
+          [
+            1702453446.975,
+            "1999"
+          ],
+          [
+            1702453447.975,
+            "2997"
+          ],
+          [
+            1702453448.975,
+            "1998"
+          ],
+          [
+            1702453449.975,
+            "2992"
+          ],
+          [
+            1702453450.975,
+            "2005"
+          ],
+          [
+            1702453451.975,
+            "2998"
+          ],
+          [
+            1702453452.975,
+            "3005"
+          ],
+          [
+            1702453453.975,
+            "3010"
+          ],
+          [
+            1702453454.975,
+            "4992"
+          ],
+          [
+            1702453455.975,
+            "4007"
+          ],
+          [
+            1702453456.975,
+            "4005"
+          ],
+          [
+            1702453457.975,
+            "4001"
+          ],
+          [
+            1702453458.975,
+            "3000"
+          ],
+          [
+            1702453459.975,
+            "5007"
+          ],
+          [
+            1702453460.975,
+            "5003"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "47",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3397"
+          ],
+          [
+            1702453445.975,
+            "2270"
+          ],
+          [
+            1702453446.975,
+            "3545"
+          ],
+          [
+            1702453447.975,
+            "3648"
+          ],
+          [
+            1702453448.975,
+            "3427"
+          ],
+          [
+            1702453449.975,
+            "3062"
+          ],
+          [
+            1702453450.975,
+            "2583"
+          ],
+          [
+            1702453451.975,
+            "2176"
+          ],
+          [
+            1702453452.975,
+            "4166"
+          ],
+          [
+            1702453453.975,
+            "2679"
+          ],
+          [
+            1702453454.975,
+            "3599"
+          ],
+          [
+            1702453455.975,
+            "2862"
+          ],
+          [
+            1702453456.975,
+            "2638"
+          ],
+          [
+            1702453457.975,
+            "2859"
+          ],
+          [
+            1702453458.975,
+            "2756"
+          ],
+          [
+            1702453459.975,
+            "3454"
+          ],
+          [
+            1702453460.975,
+            "3203"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "48",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3002"
+          ],
+          [
+            1702453445.975,
+            "2995"
+          ],
+          [
+            1702453446.975,
+            "4012"
+          ],
+          [
+            1702453447.975,
+            "2007"
+          ],
+          [
+            1702453448.975,
+            "4018"
+          ],
+          [
+            1702453449.975,
+            "3976"
+          ],
+          [
+            1702453450.975,
+            "4005"
+          ],
+          [
+            1702453451.975,
+            "4004"
+          ],
+          [
+            1702453452.975,
+            "5025"
+          ],
+          [
+            1702453453.975,
+            "4005"
+          ],
+          [
+            1702453454.975,
+            "5630"
+          ],
+          [
+            1702453455.975,
+            "6408"
+          ],
+          [
+            1702453456.975,
+            "2752"
+          ],
+          [
+            1702453457.975,
+            "3309"
+          ],
+          [
+            1702453458.975,
+            "3382"
+          ],
+          [
+            1702453459.975,
+            "3042"
+          ],
+          [
+            1702453460.975,
+            "2792"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "49",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "4000"
+          ],
+          [
+            1702453446.975,
+            "3007"
+          ],
+          [
+            1702453447.975,
+            "4003"
+          ],
+          [
+            1702453448.975,
+            "2003"
+          ],
+          [
+            1702453449.975,
+            "1994"
+          ],
+          [
+            1702453450.975,
+            "3000"
+          ],
+          [
+            1702453451.975,
+            "3994"
+          ],
+          [
+            1702453452.975,
+            "4000"
+          ],
+          [
+            1702453453.975,
+            "3138"
+          ],
+          [
+            1702453454.975,
+            "3888"
+          ],
+          [
+            1702453455.975,
+            "6013"
+          ],
+          [
+            1702453456.975,
+            "3998"
+          ],
+          [
+            1702453457.975,
+            "5019"
+          ],
+          [
+            1702453458.975,
+            "9399"
+          ],
+          [
+            1702453459.975,
+            "3315"
+          ],
+          [
+            1702453460.975,
+            "2925"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "5",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1982"
+          ],
+          [
+            1702453445.975,
+            "1004"
+          ],
+          [
+            1702453446.975,
+            "3008"
+          ],
+          [
+            1702453447.975,
+            "1003"
+          ],
+          [
+            1702453448.975,
+            "2007"
+          ],
+          [
+            1702453449.975,
+            "3005"
+          ],
+          [
+            1702453450.975,
+            "2006"
+          ],
+          [
+            1702453451.975,
+            "2007"
+          ],
+          [
+            1702453452.975,
+            "3005"
+          ],
+          [
+            1702453453.975,
+            "3012"
+          ],
+          [
+            1702453454.975,
+            "3989"
+          ],
+          [
+            1702453455.975,
+            "3004"
+          ],
+          [
+            1702453456.975,
+            "3003"
+          ],
+          [
+            1702453457.975,
+            "3003"
+          ],
+          [
+            1702453458.975,
+            "3008"
+          ],
+          [
+            1702453459.975,
+            "3992"
+          ],
+          [
+            1702453460.975,
+            "3005"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "50",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2007"
+          ],
+          [
+            1702453445.975,
+            "1002"
+          ],
+          [
+            1702453446.975,
+            "1995"
+          ],
+          [
+            1702453447.975,
+            "2007"
+          ],
+          [
+            1702453448.975,
+            "1996"
+          ],
+          [
+            1702453449.975,
+            "2124"
+          ],
+          [
+            1702453450.975,
+            "1874"
+          ],
+          [
+            1702453451.975,
+            "3007"
+          ],
+          [
+            1702453452.975,
+            "2010"
+          ],
+          [
+            1702453453.975,
+            "3000"
+          ],
+          [
+            1702453454.975,
+            "4014"
+          ],
+          [
+            1702453455.975,
+            "3000"
+          ],
+          [
+            1702453456.975,
+            "3012"
+          ],
+          [
+            1702453457.975,
+            "3002"
+          ],
+          [
+            1702453458.975,
+            "3009"
+          ],
+          [
+            1702453459.975,
+            "4015"
+          ],
+          [
+            1702453460.975,
+            "4002"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "51",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3010"
+          ],
+          [
+            1702453445.975,
+            "3013"
+          ],
+          [
+            1702453446.975,
+            "3006"
+          ],
+          [
+            1702453447.975,
+            "2004"
+          ],
+          [
+            1702453448.975,
+            "3001"
+          ],
+          [
+            1702453449.975,
+            "2003"
+          ],
+          [
+            1702453450.975,
+            "3007"
+          ],
+          [
+            1702453451.975,
+            "4016"
+          ],
+          [
+            1702453452.975,
+            "5010"
+          ],
+          [
+            1702453453.975,
+            "4137"
+          ],
+          [
+            1702453454.975,
+            "4867"
+          ],
+          [
+            1702453455.975,
+            "6005"
+          ],
+          [
+            1702453456.975,
+            "2992"
+          ],
+          [
+            1702453457.975,
+            "6345"
+          ],
+          [
+            1702453458.975,
+            "2950"
+          ],
+          [
+            1702453459.975,
+            "3509"
+          ],
+          [
+            1702453460.975,
+            "2680"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "52",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2619"
+          ],
+          [
+            1702453445.975,
+            "3079"
+          ],
+          [
+            1702453446.975,
+            "3349"
+          ],
+          [
+            1702453447.975,
+            "2618"
+          ],
+          [
+            1702453448.975,
+            "3182"
+          ],
+          [
+            1702453449.975,
+            "2606"
+          ],
+          [
+            1702453450.975,
+            "3216"
+          ],
+          [
+            1702453451.975,
+            "2718"
+          ],
+          [
+            1702453452.975,
+            "3020"
+          ],
+          [
+            1702453453.975,
+            "2690"
+          ],
+          [
+            1702453454.975,
+            "3047"
+          ],
+          [
+            1702453455.975,
+            "3233"
+          ],
+          [
+            1702453456.975,
+            "2729"
+          ],
+          [
+            1702453457.975,
+            "3111"
+          ],
+          [
+            1702453458.975,
+            "2584"
+          ],
+          [
+            1702453459.975,
+            "2879"
+          ],
+          [
+            1702453460.975,
+            "3500"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "53",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3011"
+          ],
+          [
+            1702453445.975,
+            "2997"
+          ],
+          [
+            1702453446.975,
+            "3012"
+          ],
+          [
+            1702453447.975,
+            "2008"
+          ],
+          [
+            1702453448.975,
+            "3009"
+          ],
+          [
+            1702453449.975,
+            "3014"
+          ],
+          [
+            1702453450.975,
+            "4010"
+          ],
+          [
+            1702453451.975,
+            "3008"
+          ],
+          [
+            1702453452.975,
+            "3999"
+          ],
+          [
+            1702453453.975,
+            "4008"
+          ],
+          [
+            1702453454.975,
+            "4005"
+          ],
+          [
+            1702453455.975,
+            "5003"
+          ],
+          [
+            1702453456.975,
+            "3010"
+          ],
+          [
+            1702453457.975,
+            "4986"
+          ],
+          [
+            1702453458.975,
+            "5002"
+          ],
+          [
+            1702453459.975,
+            "5011"
+          ],
+          [
+            1702453460.975,
+            "6009"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "54",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2005"
+          ],
+          [
+            1702453445.975,
+            "2009"
+          ],
+          [
+            1702453446.975,
+            "2000"
+          ],
+          [
+            1702453447.975,
+            "2002"
+          ],
+          [
+            1702453448.975,
+            "2008"
+          ],
+          [
+            1702453449.975,
+            "3014"
+          ],
+          [
+            1702453450.975,
+            "3009"
+          ],
+          [
+            1702453451.975,
+            "2011"
+          ],
+          [
+            1702453452.975,
+            "4010"
+          ],
+          [
+            1702453453.975,
+            "3002"
+          ],
+          [
+            1702453454.975,
+            "2997"
+          ],
+          [
+            1702453455.975,
+            "2999"
+          ],
+          [
+            1702453456.975,
+            "4009"
+          ],
+          [
+            1702453457.975,
+            "5009"
+          ],
+          [
+            1702453458.975,
+            "3007"
+          ],
+          [
+            1702453459.975,
+            "6010"
+          ],
+          [
+            1702453460.975,
+            "4008"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "55",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3004"
+          ],
+          [
+            1702453445.975,
+            "2002"
+          ],
+          [
+            1702453446.975,
+            "3015"
+          ],
+          [
+            1702453447.975,
+            "2008"
+          ],
+          [
+            1702453448.975,
+            "2002"
+          ],
+          [
+            1702453449.975,
+            "3012"
+          ],
+          [
+            1702453450.975,
+            "2002"
+          ],
+          [
+            1702453451.975,
+            "3152"
+          ],
+          [
+            1702453452.975,
+            "2865"
+          ],
+          [
+            1702453453.975,
+            "4007"
+          ],
+          [
+            1702453454.975,
+            "4010"
+          ],
+          [
+            1702453455.975,
+            "5008"
+          ],
+          [
+            1702453456.975,
+            "3001"
+          ],
+          [
+            1702453457.975,
+            "4007"
+          ],
+          [
+            1702453458.975,
+            "4006"
+          ],
+          [
+            1702453459.975,
+            "4998"
+          ],
+          [
+            1702453460.975,
+            "5011"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "56",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2652"
+          ],
+          [
+            1702453445.975,
+            "3218"
+          ],
+          [
+            1702453446.975,
+            "3250"
+          ],
+          [
+            1702453447.975,
+            "3461"
+          ],
+          [
+            1702453448.975,
+            "3337"
+          ],
+          [
+            1702453449.975,
+            "3006"
+          ],
+          [
+            1702453450.975,
+            "2922"
+          ],
+          [
+            1702453451.975,
+            "2211"
+          ],
+          [
+            1702453452.975,
+            "3823"
+          ],
+          [
+            1702453453.975,
+            "2683"
+          ],
+          [
+            1702453454.975,
+            "3301"
+          ],
+          [
+            1702453455.975,
+            "2579"
+          ],
+          [
+            1702453456.975,
+            "2805"
+          ],
+          [
+            1702453457.975,
+            "2946"
+          ],
+          [
+            1702453458.975,
+            "2963"
+          ],
+          [
+            1702453459.975,
+            "2962"
+          ],
+          [
+            1702453460.975,
+            "3620"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "57",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3002"
+          ],
+          [
+            1702453445.975,
+            "2998"
+          ],
+          [
+            1702453446.975,
+            "4014"
+          ],
+          [
+            1702453447.975,
+            "2005"
+          ],
+          [
+            1702453448.975,
+            "4016"
+          ],
+          [
+            1702453449.975,
+            "4010"
+          ],
+          [
+            1702453450.975,
+            "4015"
+          ],
+          [
+            1702453451.975,
+            "4002"
+          ],
+          [
+            1702453452.975,
+            "5008"
+          ],
+          [
+            1702453453.975,
+            "3995"
+          ],
+          [
+            1702453454.975,
+            "5014"
+          ],
+          [
+            1702453455.975,
+            "7013"
+          ],
+          [
+            1702453456.975,
+            "5249"
+          ],
+          [
+            1702453457.975,
+            "3076"
+          ],
+          [
+            1702453458.975,
+            "3089"
+          ],
+          [
+            1702453459.975,
+            "3573"
+          ],
+          [
+            1702453460.975,
+            "2594"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "58",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2009"
+          ],
+          [
+            1702453445.975,
+            "4006"
+          ],
+          [
+            1702453446.975,
+            "3008"
+          ],
+          [
+            1702453447.975,
+            "4002"
+          ],
+          [
+            1702453448.975,
+            "2007"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "3010"
+          ],
+          [
+            1702453451.975,
+            "4002"
+          ],
+          [
+            1702453452.975,
+            "4005"
+          ],
+          [
+            1702453453.975,
+            "4002"
+          ],
+          [
+            1702453454.975,
+            "3001"
+          ],
+          [
+            1702453455.975,
+            "6001"
+          ],
+          [
+            1702453456.975,
+            "3997"
+          ],
+          [
+            1702453457.975,
+            "5013"
+          ],
+          [
+            1702453458.975,
+            "7874"
+          ],
+          [
+            1702453459.975,
+            "3505"
+          ],
+          [
+            1702453460.975,
+            "2908"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "59",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2005"
+          ],
+          [
+            1702453445.975,
+            "1005"
+          ],
+          [
+            1702453446.975,
+            "2110"
+          ],
+          [
+            1702453447.975,
+            "1896"
+          ],
+          [
+            1702453448.975,
+            "2008"
+          ],
+          [
+            1702453449.975,
+            "3012"
+          ],
+          [
+            1702453450.975,
+            "1002"
+          ],
+          [
+            1702453451.975,
+            "3003"
+          ],
+          [
+            1702453452.975,
+            "2000"
+          ],
+          [
+            1702453453.975,
+            "3005"
+          ],
+          [
+            1702453454.975,
+            "4002"
+          ],
+          [
+            1702453455.975,
+            "3008"
+          ],
+          [
+            1702453456.975,
+            "3008"
+          ],
+          [
+            1702453457.975,
+            "3003"
+          ],
+          [
+            1702453458.975,
+            "3130"
+          ],
+          [
+            1702453459.975,
+            "4871"
+          ],
+          [
+            1702453460.975,
+            "3997"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "6",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3006"
+          ],
+          [
+            1702453445.975,
+            "3013"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "2001"
+          ],
+          [
+            1702453448.975,
+            "3007"
+          ],
+          [
+            1702453449.975,
+            "1996"
+          ],
+          [
+            1702453450.975,
+            "3006"
+          ],
+          [
+            1702453451.975,
+            "4012"
+          ],
+          [
+            1702453452.975,
+            "5000"
+          ],
+          [
+            1702453453.975,
+            "3999"
+          ],
+          [
+            1702453454.975,
+            "5996"
+          ],
+          [
+            1702453455.975,
+            "4010"
+          ],
+          [
+            1702453456.975,
+            "3002"
+          ],
+          [
+            1702453457.975,
+            "8597"
+          ],
+          [
+            1702453458.975,
+            "3049"
+          ],
+          [
+            1702453459.975,
+            "3126"
+          ],
+          [
+            1702453460.975,
+            "2785"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "60",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3010"
+          ],
+          [
+            1702453445.975,
+            "3002"
+          ],
+          [
+            1702453446.975,
+            "3000"
+          ],
+          [
+            1702453447.975,
+            "2009"
+          ],
+          [
+            1702453448.975,
+            "3007"
+          ],
+          [
+            1702453449.975,
+            "2000"
+          ],
+          [
+            1702453450.975,
+            "2999"
+          ],
+          [
+            1702453451.975,
+            "4000"
+          ],
+          [
+            1702453452.975,
+            "5008"
+          ],
+          [
+            1702453453.975,
+            "4016"
+          ],
+          [
+            1702453454.975,
+            "4171"
+          ],
+          [
+            1702453455.975,
+            "4852"
+          ],
+          [
+            1702453456.975,
+            "3012"
+          ],
+          [
+            1702453457.975,
+            "8004"
+          ],
+          [
+            1702453458.975,
+            "5495"
+          ],
+          [
+            1702453459.975,
+            "3689"
+          ],
+          [
+            1702453460.975,
+            "2928"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "61",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2611"
+          ],
+          [
+            1702453445.975,
+            "3159"
+          ],
+          [
+            1702453446.975,
+            "2925"
+          ],
+          [
+            1702453447.975,
+            "2968"
+          ],
+          [
+            1702453448.975,
+            "2948"
+          ],
+          [
+            1702453449.975,
+            "2949"
+          ],
+          [
+            1702453450.975,
+            "2770"
+          ],
+          [
+            1702453451.975,
+            "2947"
+          ],
+          [
+            1702453452.975,
+            "2368"
+          ],
+          [
+            1702453453.975,
+            "2977"
+          ],
+          [
+            1702453454.975,
+            "3395"
+          ],
+          [
+            1702453455.975,
+            "2671"
+          ],
+          [
+            1702453456.975,
+            "2698"
+          ],
+          [
+            1702453457.975,
+            "2625"
+          ],
+          [
+            1702453458.975,
+            "3272"
+          ],
+          [
+            1702453459.975,
+            "3362"
+          ],
+          [
+            1702453460.975,
+            "2930"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "62",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2008"
+          ],
+          [
+            1702453445.975,
+            "4012"
+          ],
+          [
+            1702453446.975,
+            "1998"
+          ],
+          [
+            1702453447.975,
+            "3001"
+          ],
+          [
+            1702453448.975,
+            "3000"
+          ],
+          [
+            1702453449.975,
+            "3005"
+          ],
+          [
+            1702453450.975,
+            "3002"
+          ],
+          [
+            1702453451.975,
+            "3163"
+          ],
+          [
+            1702453452.975,
+            "4860"
+          ],
+          [
+            1702453453.975,
+            "4017"
+          ],
+          [
+            1702453454.975,
+            "4012"
+          ],
+          [
+            1702453455.975,
+            "5014"
+          ],
+          [
+            1702453456.975,
+            "4004"
+          ],
+          [
+            1702453457.975,
+            "4003"
+          ],
+          [
+            1702453458.975,
+            "6016"
+          ],
+          [
+            1702453459.975,
+            "5002"
+          ],
+          [
+            1702453460.975,
+            "5000"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "63",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3003"
+          ],
+          [
+            1702453445.975,
+            "1996"
+          ],
+          [
+            1702453446.975,
+            "1004"
+          ],
+          [
+            1702453447.975,
+            "3013"
+          ],
+          [
+            1702453448.975,
+            "1074"
+          ],
+          [
+            1702453449.975,
+            "2941"
+          ],
+          [
+            1702453450.975,
+            "3010"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "3003"
+          ],
+          [
+            1702453453.975,
+            "3010"
+          ],
+          [
+            1702453454.975,
+            "3014"
+          ],
+          [
+            1702453455.975,
+            "3528"
+          ],
+          [
+            1702453456.975,
+            "3486"
+          ],
+          [
+            1702453457.975,
+            "3699"
+          ],
+          [
+            1702453458.975,
+            "3322"
+          ],
+          [
+            1702453459.975,
+            "5003"
+          ],
+          [
+            1702453460.975,
+            "3009"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "64",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3012"
+          ],
+          [
+            1702453445.975,
+            "2008"
+          ],
+          [
+            1702453446.975,
+            "1996"
+          ],
+          [
+            1702453447.975,
+            "4001"
+          ],
+          [
+            1702453448.975,
+            "2010"
+          ],
+          [
+            1702453449.975,
+            "3001"
+          ],
+          [
+            1702453450.975,
+            "2003"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "3009"
+          ],
+          [
+            1702453453.975,
+            "2992"
+          ],
+          [
+            1702453454.975,
+            "5005"
+          ],
+          [
+            1702453455.975,
+            "3993"
+          ],
+          [
+            1702453456.975,
+            "3996"
+          ],
+          [
+            1702453457.975,
+            "3991"
+          ],
+          [
+            1702453458.975,
+            "2998"
+          ],
+          [
+            1702453459.975,
+            "5002"
+          ],
+          [
+            1702453460.975,
+            "5013"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "65",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3627"
+          ],
+          [
+            1702453445.975,
+            "3383"
+          ],
+          [
+            1702453446.975,
+            "3421"
+          ],
+          [
+            1702453447.975,
+            "3936"
+          ],
+          [
+            1702453448.975,
+            "2896"
+          ],
+          [
+            1702453449.975,
+            "3174"
+          ],
+          [
+            1702453450.975,
+            "3124"
+          ],
+          [
+            1702453451.975,
+            "1750"
+          ],
+          [
+            1702453452.975,
+            "3476"
+          ],
+          [
+            1702453453.975,
+            "2806"
+          ],
+          [
+            1702453454.975,
+            "3241"
+          ],
+          [
+            1702453455.975,
+            "3419"
+          ],
+          [
+            1702453456.975,
+            "3158"
+          ],
+          [
+            1702453457.975,
+            "3455"
+          ],
+          [
+            1702453458.975,
+            "3089"
+          ],
+          [
+            1702453459.975,
+            "3503"
+          ],
+          [
+            1702453460.975,
+            "3207"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "66",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3002"
+          ],
+          [
+            1702453445.975,
+            "3005"
+          ],
+          [
+            1702453446.975,
+            "4007"
+          ],
+          [
+            1702453447.975,
+            "4001"
+          ],
+          [
+            1702453448.975,
+            "4016"
+          ],
+          [
+            1702453449.975,
+            "3999"
+          ],
+          [
+            1702453450.975,
+            "4000"
+          ],
+          [
+            1702453451.975,
+            "4015"
+          ],
+          [
+            1702453452.975,
+            "6016"
+          ],
+          [
+            1702453453.975,
+            "4007"
+          ],
+          [
+            1702453454.975,
+            "5961"
+          ],
+          [
+            1702453455.975,
+            "3729"
+          ],
+          [
+            1702453456.975,
+            "2659"
+          ],
+          [
+            1702453457.975,
+            "2921"
+          ],
+          [
+            1702453458.975,
+            "2908"
+          ],
+          [
+            1702453459.975,
+            "3695"
+          ],
+          [
+            1702453460.975,
+            "2837"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "67",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "4012"
+          ],
+          [
+            1702453446.975,
+            "4011"
+          ],
+          [
+            1702453447.975,
+            "3551"
+          ],
+          [
+            1702453448.975,
+            "2462"
+          ],
+          [
+            1702453449.975,
+            "1999"
+          ],
+          [
+            1702453450.975,
+            "3012"
+          ],
+          [
+            1702453451.975,
+            "2998"
+          ],
+          [
+            1702453452.975,
+            "5010"
+          ],
+          [
+            1702453453.975,
+            "4009"
+          ],
+          [
+            1702453454.975,
+            "4011"
+          ],
+          [
+            1702453455.975,
+            "5006"
+          ],
+          [
+            1702453456.975,
+            "4990"
+          ],
+          [
+            1702453457.975,
+            "5015"
+          ],
+          [
+            1702453458.975,
+            "4600"
+          ],
+          [
+            1702453459.975,
+            "2987"
+          ],
+          [
+            1702453460.975,
+            "2821"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "68",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1998"
+          ],
+          [
+            1702453445.975,
+            "1997"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "2988"
+          ],
+          [
+            1702453448.975,
+            "2001"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "2000"
+          ],
+          [
+            1702453451.975,
+            "2006"
+          ],
+          [
+            1702453452.975,
+            "3013"
+          ],
+          [
+            1702453453.975,
+            "3016"
+          ],
+          [
+            1702453454.975,
+            "4000"
+          ],
+          [
+            1702453455.975,
+            "3999"
+          ],
+          [
+            1702453456.975,
+            "3004"
+          ],
+          [
+            1702453457.975,
+            "2992"
+          ],
+          [
+            1702453458.975,
+            "2997"
+          ],
+          [
+            1702453459.975,
+            "4013"
+          ],
+          [
+            1702453460.975,
+            "3006"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "69",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2999"
+          ],
+          [
+            1702453445.975,
+            "3010"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "2009"
+          ],
+          [
+            1702453448.975,
+            "3004"
+          ],
+          [
+            1702453449.975,
+            "2000"
+          ],
+          [
+            1702453450.975,
+            "3010"
+          ],
+          [
+            1702453451.975,
+            "4009"
+          ],
+          [
+            1702453452.975,
+            "5004"
+          ],
+          [
+            1702453453.975,
+            "4017"
+          ],
+          [
+            1702453454.975,
+            "5023"
+          ],
+          [
+            1702453455.975,
+            "4001"
+          ],
+          [
+            1702453456.975,
+            "3001"
+          ],
+          [
+            1702453457.975,
+            "8018"
+          ],
+          [
+            1702453458.975,
+            "4440"
+          ],
+          [
+            1702453459.975,
+            "3817"
+          ],
+          [
+            1702453460.975,
+            "3062"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "7",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2637"
+          ],
+          [
+            1702453445.975,
+            "3296"
+          ],
+          [
+            1702453446.975,
+            "3315"
+          ],
+          [
+            1702453447.975,
+            "3028"
+          ],
+          [
+            1702453448.975,
+            "2715"
+          ],
+          [
+            1702453449.975,
+            "2853"
+          ],
+          [
+            1702453450.975,
+            "3150"
+          ],
+          [
+            1702453451.975,
+            "3156"
+          ],
+          [
+            1702453452.975,
+            "2962"
+          ],
+          [
+            1702453453.975,
+            "3199"
+          ],
+          [
+            1702453454.975,
+            "3287"
+          ],
+          [
+            1702453455.975,
+            "2772"
+          ],
+          [
+            1702453456.975,
+            "2797"
+          ],
+          [
+            1702453457.975,
+            "3276"
+          ],
+          [
+            1702453458.975,
+            "2958"
+          ],
+          [
+            1702453459.975,
+            "2791"
+          ],
+          [
+            1702453460.975,
+            "3088"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "70",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2827"
+          ],
+          [
+            1702453445.975,
+            "3401"
+          ],
+          [
+            1702453446.975,
+            "3016"
+          ],
+          [
+            1702453447.975,
+            "2809"
+          ],
+          [
+            1702453448.975,
+            "2831"
+          ],
+          [
+            1702453449.975,
+            "3115"
+          ],
+          [
+            1702453450.975,
+            "3232"
+          ],
+          [
+            1702453451.975,
+            "3265"
+          ],
+          [
+            1702453452.975,
+            "2969"
+          ],
+          [
+            1702453453.975,
+            "2874"
+          ],
+          [
+            1702453454.975,
+            "3590"
+          ],
+          [
+            1702453455.975,
+            "3429"
+          ],
+          [
+            1702453456.975,
+            "2534"
+          ],
+          [
+            1702453457.975,
+            "3044"
+          ],
+          [
+            1702453458.975,
+            "3213"
+          ],
+          [
+            1702453459.975,
+            "3452"
+          ],
+          [
+            1702453460.975,
+            "3052"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "71",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2009"
+          ],
+          [
+            1702453445.975,
+            "3002"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "1995"
+          ],
+          [
+            1702453448.975,
+            "3005"
+          ],
+          [
+            1702453449.975,
+            "3001"
+          ],
+          [
+            1702453450.975,
+            "4003"
+          ],
+          [
+            1702453451.975,
+            "3014"
+          ],
+          [
+            1702453452.975,
+            "3995"
+          ],
+          [
+            1702453453.975,
+            "4008"
+          ],
+          [
+            1702453454.975,
+            "4004"
+          ],
+          [
+            1702453455.975,
+            "5007"
+          ],
+          [
+            1702453456.975,
+            "3006"
+          ],
+          [
+            1702453457.975,
+            "5018"
+          ],
+          [
+            1702453458.975,
+            "5002"
+          ],
+          [
+            1702453459.975,
+            "4989"
+          ],
+          [
+            1702453460.975,
+            "6012"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "72",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2009"
+          ],
+          [
+            1702453445.975,
+            "2001"
+          ],
+          [
+            1702453446.975,
+            "1000"
+          ],
+          [
+            1702453447.975,
+            "3003"
+          ],
+          [
+            1702453448.975,
+            "996"
+          ],
+          [
+            1702453449.975,
+            "2995"
+          ],
+          [
+            1702453450.975,
+            "2992"
+          ],
+          [
+            1702453451.975,
+            "3012"
+          ],
+          [
+            1702453452.975,
+            "3009"
+          ],
+          [
+            1702453453.975,
+            "3006"
+          ],
+          [
+            1702453454.975,
+            "3003"
+          ],
+          [
+            1702453455.975,
+            "2996"
+          ],
+          [
+            1702453456.975,
+            "4004"
+          ],
+          [
+            1702453457.975,
+            "3004"
+          ],
+          [
+            1702453458.975,
+            "4001"
+          ],
+          [
+            1702453459.975,
+            "5007"
+          ],
+          [
+            1702453460.975,
+            "3007"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "73",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3005"
+          ],
+          [
+            1702453445.975,
+            "1995"
+          ],
+          [
+            1702453446.975,
+            "3001"
+          ],
+          [
+            1702453447.975,
+            "2003"
+          ],
+          [
+            1702453448.975,
+            "2001"
+          ],
+          [
+            1702453449.975,
+            "2999"
+          ],
+          [
+            1702453450.975,
+            "1994"
+          ],
+          [
+            1702453451.975,
+            "3991"
+          ],
+          [
+            1702453452.975,
+            "2004"
+          ],
+          [
+            1702453453.975,
+            "3996"
+          ],
+          [
+            1702453454.975,
+            "5002"
+          ],
+          [
+            1702453455.975,
+            "4997"
+          ],
+          [
+            1702453456.975,
+            "3003"
+          ],
+          [
+            1702453457.975,
+            "4012"
+          ],
+          [
+            1702453458.975,
+            "3994"
+          ],
+          [
+            1702453459.975,
+            "5009"
+          ],
+          [
+            1702453460.975,
+            "4999"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "74",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3368"
+          ],
+          [
+            1702453445.975,
+            "2288"
+          ],
+          [
+            1702453446.975,
+            "3747"
+          ],
+          [
+            1702453447.975,
+            "3367"
+          ],
+          [
+            1702453448.975,
+            "3158"
+          ],
+          [
+            1702453449.975,
+            "2983"
+          ],
+          [
+            1702453450.975,
+            "2857"
+          ],
+          [
+            1702453451.975,
+            "2422"
+          ],
+          [
+            1702453452.975,
+            "4643"
+          ],
+          [
+            1702453453.975,
+            "2897"
+          ],
+          [
+            1702453454.975,
+            "3290"
+          ],
+          [
+            1702453455.975,
+            "2936"
+          ],
+          [
+            1702453456.975,
+            "2623"
+          ],
+          [
+            1702453457.975,
+            "2944"
+          ],
+          [
+            1702453458.975,
+            "3070"
+          ],
+          [
+            1702453459.975,
+            "3181"
+          ],
+          [
+            1702453460.975,
+            "3222"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "75",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2994"
+          ],
+          [
+            1702453445.975,
+            "3003"
+          ],
+          [
+            1702453446.975,
+            "3996"
+          ],
+          [
+            1702453447.975,
+            "1999"
+          ],
+          [
+            1702453448.975,
+            "4013"
+          ],
+          [
+            1702453449.975,
+            "4010"
+          ],
+          [
+            1702453450.975,
+            "3996"
+          ],
+          [
+            1702453451.975,
+            "4012"
+          ],
+          [
+            1702453452.975,
+            "5020"
+          ],
+          [
+            1702453453.975,
+            "3993"
+          ],
+          [
+            1702453454.975,
+            "5016"
+          ],
+          [
+            1702453455.975,
+            "7014"
+          ],
+          [
+            1702453456.975,
+            "3560"
+          ],
+          [
+            1702453457.975,
+            "3932"
+          ],
+          [
+            1702453458.975,
+            "2895"
+          ],
+          [
+            1702453459.975,
+            "3006"
+          ],
+          [
+            1702453460.975,
+            "2769"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "76",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "3991"
+          ],
+          [
+            1702453446.975,
+            "2996"
+          ],
+          [
+            1702453447.975,
+            "3001"
+          ],
+          [
+            1702453448.975,
+            "2720"
+          ],
+          [
+            1702453449.975,
+            "2293"
+          ],
+          [
+            1702453450.975,
+            "2986"
+          ],
+          [
+            1702453451.975,
+            "3002"
+          ],
+          [
+            1702453452.975,
+            "5006"
+          ],
+          [
+            1702453453.975,
+            "3004"
+          ],
+          [
+            1702453454.975,
+            "4010"
+          ],
+          [
+            1702453455.975,
+            "5000"
+          ],
+          [
+            1702453456.975,
+            "5013"
+          ],
+          [
+            1702453457.975,
+            "4994"
+          ],
+          [
+            1702453458.975,
+            "4056"
+          ],
+          [
+            1702453459.975,
+            "2943"
+          ],
+          [
+            1702453460.975,
+            "3026"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "77",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2006"
+          ],
+          [
+            1702453445.975,
+            "1005"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "1002"
+          ],
+          [
+            1702453448.975,
+            "2005"
+          ],
+          [
+            1702453449.975,
+            "3005"
+          ],
+          [
+            1702453450.975,
+            "1000"
+          ],
+          [
+            1702453451.975,
+            "3008"
+          ],
+          [
+            1702453452.975,
+            "2006"
+          ],
+          [
+            1702453453.975,
+            "2992"
+          ],
+          [
+            1702453454.975,
+            "4003"
+          ],
+          [
+            1702453455.975,
+            "3002"
+          ],
+          [
+            1702453456.975,
+            "3016"
+          ],
+          [
+            1702453457.975,
+            "2996"
+          ],
+          [
+            1702453458.975,
+            "2999"
+          ],
+          [
+            1702453459.975,
+            "4007"
+          ],
+          [
+            1702453460.975,
+            "3998"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "78",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2993"
+          ],
+          [
+            1702453445.975,
+            "3014"
+          ],
+          [
+            1702453446.975,
+            "3012"
+          ],
+          [
+            1702453447.975,
+            "2000"
+          ],
+          [
+            1702453448.975,
+            "3006"
+          ],
+          [
+            1702453449.975,
+            "2005"
+          ],
+          [
+            1702453450.975,
+            "3991"
+          ],
+          [
+            1702453451.975,
+            "5012"
+          ],
+          [
+            1702453452.975,
+            "4177"
+          ],
+          [
+            1702453453.975,
+            "3850"
+          ],
+          [
+            1702453454.975,
+            "5012"
+          ],
+          [
+            1702453455.975,
+            "5007"
+          ],
+          [
+            1702453456.975,
+            "3015"
+          ],
+          [
+            1702453457.975,
+            "4750"
+          ],
+          [
+            1702453458.975,
+            "2904"
+          ],
+          [
+            1702453459.975,
+            "3420"
+          ],
+          [
+            1702453460.975,
+            "3155"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "79",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2638"
+          ],
+          [
+            1702453445.975,
+            "3700"
+          ],
+          [
+            1702453446.975,
+            "3036"
+          ],
+          [
+            1702453447.975,
+            "2832"
+          ],
+          [
+            1702453448.975,
+            "2561"
+          ],
+          [
+            1702453449.975,
+            "3262"
+          ],
+          [
+            1702453450.975,
+            "2896"
+          ],
+          [
+            1702453451.975,
+            "2436"
+          ],
+          [
+            1702453452.975,
+            "2749"
+          ],
+          [
+            1702453453.975,
+            "3305"
+          ],
+          [
+            1702453454.975,
+            "3467"
+          ],
+          [
+            1702453455.975,
+            "3142"
+          ],
+          [
+            1702453456.975,
+            "3007"
+          ],
+          [
+            1702453457.975,
+            "3153"
+          ],
+          [
+            1702453458.975,
+            "2962"
+          ],
+          [
+            1702453459.975,
+            "2754"
+          ],
+          [
+            1702453460.975,
+            "3303"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "8",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2994"
+          ],
+          [
+            1702453445.975,
+            "3013"
+          ],
+          [
+            1702453446.975,
+            "3003"
+          ],
+          [
+            1702453447.975,
+            "1993"
+          ],
+          [
+            1702453448.975,
+            "3007"
+          ],
+          [
+            1702453449.975,
+            "2998"
+          ],
+          [
+            1702453450.975,
+            "4001"
+          ],
+          [
+            1702453451.975,
+            "3015"
+          ],
+          [
+            1702453452.975,
+            "3998"
+          ],
+          [
+            1702453453.975,
+            "4001"
+          ],
+          [
+            1702453454.975,
+            "4007"
+          ],
+          [
+            1702453455.975,
+            "5010"
+          ],
+          [
+            1702453456.975,
+            "3000"
+          ],
+          [
+            1702453457.975,
+            "5007"
+          ],
+          [
+            1702453458.975,
+            "5011"
+          ],
+          [
+            1702453459.975,
+            "5011"
+          ],
+          [
+            1702453460.975,
+            "4701"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "80",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2010"
+          ],
+          [
+            1702453445.975,
+            "3007"
+          ],
+          [
+            1702453446.975,
+            "3009"
+          ],
+          [
+            1702453447.975,
+            "2003"
+          ],
+          [
+            1702453448.975,
+            "2998"
+          ],
+          [
+            1702453449.975,
+            "3005"
+          ],
+          [
+            1702453450.975,
+            "3913"
+          ],
+          [
+            1702453451.975,
+            "3104"
+          ],
+          [
+            1702453452.975,
+            "3993"
+          ],
+          [
+            1702453453.975,
+            "4002"
+          ],
+          [
+            1702453454.975,
+            "4013"
+          ],
+          [
+            1702453455.975,
+            "5013"
+          ],
+          [
+            1702453456.975,
+            "3004"
+          ],
+          [
+            1702453457.975,
+            "4994"
+          ],
+          [
+            1702453458.975,
+            "5020"
+          ],
+          [
+            1702453459.975,
+            "4995"
+          ],
+          [
+            1702453460.975,
+            "6005"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "81",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1002"
+          ],
+          [
+            1702453445.975,
+            "3012"
+          ],
+          [
+            1702453446.975,
+            "1001"
+          ],
+          [
+            1702453447.975,
+            "2999"
+          ],
+          [
+            1702453448.975,
+            "994"
+          ],
+          [
+            1702453449.975,
+            "2995"
+          ],
+          [
+            1702453450.975,
+            "3001"
+          ],
+          [
+            1702453451.975,
+            "3006"
+          ],
+          [
+            1702453452.975,
+            "3003"
+          ],
+          [
+            1702453453.975,
+            "2992"
+          ],
+          [
+            1702453454.975,
+            "2999"
+          ],
+          [
+            1702453455.975,
+            "3016"
+          ],
+          [
+            1702453456.975,
+            "4008"
+          ],
+          [
+            1702453457.975,
+            "3004"
+          ],
+          [
+            1702453458.975,
+            "4020"
+          ],
+          [
+            1702453459.975,
+            "4000"
+          ],
+          [
+            1702453460.975,
+            "3998"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "82",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3001"
+          ],
+          [
+            1702453445.975,
+            "2000"
+          ],
+          [
+            1702453446.975,
+            "3008"
+          ],
+          [
+            1702453447.975,
+            "2004"
+          ],
+          [
+            1702453448.975,
+            "2004"
+          ],
+          [
+            1702453449.975,
+            "3004"
+          ],
+          [
+            1702453450.975,
+            "2009"
+          ],
+          [
+            1702453451.975,
+            "3022"
+          ],
+          [
+            1702453452.975,
+            "2996"
+          ],
+          [
+            1702453453.975,
+            "4011"
+          ],
+          [
+            1702453454.975,
+            "4009"
+          ],
+          [
+            1702453455.975,
+            "4996"
+          ],
+          [
+            1702453456.975,
+            "3009"
+          ],
+          [
+            1702453457.975,
+            "4000"
+          ],
+          [
+            1702453458.975,
+            "4008"
+          ],
+          [
+            1702453459.975,
+            "5011"
+          ],
+          [
+            1702453460.975,
+            "5014"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "83",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3008"
+          ],
+          [
+            1702453445.975,
+            "3977"
+          ],
+          [
+            1702453446.975,
+            "3205"
+          ],
+          [
+            1702453447.975,
+            "3150"
+          ],
+          [
+            1702453448.975,
+            "2812"
+          ],
+          [
+            1702453449.975,
+            "3002"
+          ],
+          [
+            1702453450.975,
+            "2824"
+          ],
+          [
+            1702453451.975,
+            "2629"
+          ],
+          [
+            1702453452.975,
+            "3853"
+          ],
+          [
+            1702453453.975,
+            "2495"
+          ],
+          [
+            1702453454.975,
+            "3585"
+          ],
+          [
+            1702453455.975,
+            "2856"
+          ],
+          [
+            1702453456.975,
+            "2894"
+          ],
+          [
+            1702453457.975,
+            "2815"
+          ],
+          [
+            1702453458.975,
+            "2783"
+          ],
+          [
+            1702453459.975,
+            "3334"
+          ],
+          [
+            1702453460.975,
+            "3506"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "84",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3000"
+          ],
+          [
+            1702453445.975,
+            "3001"
+          ],
+          [
+            1702453446.975,
+            "4023"
+          ],
+          [
+            1702453447.975,
+            "2000"
+          ],
+          [
+            1702453448.975,
+            "5013"
+          ],
+          [
+            1702453449.975,
+            "4010"
+          ],
+          [
+            1702453450.975,
+            "4007"
+          ],
+          [
+            1702453451.975,
+            "3998"
+          ],
+          [
+            1702453452.975,
+            "5015"
+          ],
+          [
+            1702453453.975,
+            "4011"
+          ],
+          [
+            1702453454.975,
+            "6014"
+          ],
+          [
+            1702453455.975,
+            "3338"
+          ],
+          [
+            1702453456.975,
+            "3248"
+          ],
+          [
+            1702453457.975,
+            "2884"
+          ],
+          [
+            1702453458.975,
+            "2662"
+          ],
+          [
+            1702453459.975,
+            "3229"
+          ],
+          [
+            1702453460.975,
+            "3059"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "85",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1992"
+          ],
+          [
+            1702453445.975,
+            "3995"
+          ],
+          [
+            1702453446.975,
+            "3004"
+          ],
+          [
+            1702453447.975,
+            "4000"
+          ],
+          [
+            1702453448.975,
+            "2004"
+          ],
+          [
+            1702453449.975,
+            "2006"
+          ],
+          [
+            1702453450.975,
+            "3000"
+          ],
+          [
+            1702453451.975,
+            "4012"
+          ],
+          [
+            1702453452.975,
+            "4009"
+          ],
+          [
+            1702453453.975,
+            "3000"
+          ],
+          [
+            1702453454.975,
+            "4014"
+          ],
+          [
+            1702453455.975,
+            "6024"
+          ],
+          [
+            1702453456.975,
+            "4005"
+          ],
+          [
+            1702453457.975,
+            "5003"
+          ],
+          [
+            1702453458.975,
+            "6256"
+          ],
+          [
+            1702453459.975,
+            "3214"
+          ],
+          [
+            1702453460.975,
+            "3414"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "86",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2004"
+          ],
+          [
+            1702453445.975,
+            "1405"
+          ],
+          [
+            1702453446.975,
+            "2605"
+          ],
+          [
+            1702453447.975,
+            "1001"
+          ],
+          [
+            1702453448.975,
+            "3002"
+          ],
+          [
+            1702453449.975,
+            "2002"
+          ],
+          [
+            1702453450.975,
+            "2010"
+          ],
+          [
+            1702453451.975,
+            "2000"
+          ],
+          [
+            1702453452.975,
+            "3008"
+          ],
+          [
+            1702453453.975,
+            "3006"
+          ],
+          [
+            1702453454.975,
+            "4008"
+          ],
+          [
+            1702453455.975,
+            "3012"
+          ],
+          [
+            1702453456.975,
+            "2999"
+          ],
+          [
+            1702453457.975,
+            "2989"
+          ],
+          [
+            1702453458.975,
+            "3007"
+          ],
+          [
+            1702453459.975,
+            "4007"
+          ],
+          [
+            1702453460.975,
+            "2994"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "87",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3008"
+          ],
+          [
+            1702453445.975,
+            "3016"
+          ],
+          [
+            1702453446.975,
+            "3013"
+          ],
+          [
+            1702453447.975,
+            "1997"
+          ],
+          [
+            1702453448.975,
+            "3006"
+          ],
+          [
+            1702453449.975,
+            "2001"
+          ],
+          [
+            1702453450.975,
+            "3011"
+          ],
+          [
+            1702453451.975,
+            "4005"
+          ],
+          [
+            1702453452.975,
+            "5011"
+          ],
+          [
+            1702453453.975,
+            "4005"
+          ],
+          [
+            1702453454.975,
+            "6009"
+          ],
+          [
+            1702453455.975,
+            "5015"
+          ],
+          [
+            1702453456.975,
+            "2775"
+          ],
+          [
+            1702453457.975,
+            "4407"
+          ],
+          [
+            1702453458.975,
+            "2855"
+          ],
+          [
+            1702453459.975,
+            "3495"
+          ],
+          [
+            1702453460.975,
+            "2992"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "88",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2291"
+          ],
+          [
+            1702453445.975,
+            "3299"
+          ],
+          [
+            1702453446.975,
+            "3109"
+          ],
+          [
+            1702453447.975,
+            "2606"
+          ],
+          [
+            1702453448.975,
+            "2855"
+          ],
+          [
+            1702453449.975,
+            "3383"
+          ],
+          [
+            1702453450.975,
+            "2978"
+          ],
+          [
+            1702453451.975,
+            "2885"
+          ],
+          [
+            1702453452.975,
+            "3039"
+          ],
+          [
+            1702453453.975,
+            "2880"
+          ],
+          [
+            1702453454.975,
+            "3267"
+          ],
+          [
+            1702453455.975,
+            "2575"
+          ],
+          [
+            1702453456.975,
+            "2718"
+          ],
+          [
+            1702453457.975,
+            "3363"
+          ],
+          [
+            1702453458.975,
+            "3197"
+          ],
+          [
+            1702453459.975,
+            "2990"
+          ],
+          [
+            1702453460.975,
+            "3246"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "89",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1998"
+          ],
+          [
+            1702453445.975,
+            "4015"
+          ],
+          [
+            1702453446.975,
+            "1998"
+          ],
+          [
+            1702453447.975,
+            "2997"
+          ],
+          [
+            1702453448.975,
+            "2998"
+          ],
+          [
+            1702453449.975,
+            "3010"
+          ],
+          [
+            1702453450.975,
+            "3017"
+          ],
+          [
+            1702453451.975,
+            "3010"
+          ],
+          [
+            1702453452.975,
+            "5000"
+          ],
+          [
+            1702453453.975,
+            "4001"
+          ],
+          [
+            1702453454.975,
+            "4002"
+          ],
+          [
+            1702453455.975,
+            "5005"
+          ],
+          [
+            1702453456.975,
+            "5000"
+          ],
+          [
+            1702453457.975,
+            "5009"
+          ],
+          [
+            1702453458.975,
+            "6007"
+          ],
+          [
+            1702453459.975,
+            "5009"
+          ],
+          [
+            1702453460.975,
+            "4935"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "9",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2007"
+          ],
+          [
+            1702453445.975,
+            "1996"
+          ],
+          [
+            1702453446.975,
+            "2001"
+          ],
+          [
+            1702453447.975,
+            "3004"
+          ],
+          [
+            1702453448.975,
+            "1003"
+          ],
+          [
+            1702453449.975,
+            "3008"
+          ],
+          [
+            1702453450.975,
+            "3007"
+          ],
+          [
+            1702453451.975,
+            "2143"
+          ],
+          [
+            1702453452.975,
+            "3861"
+          ],
+          [
+            1702453453.975,
+            "3005"
+          ],
+          [
+            1702453454.975,
+            "3000"
+          ],
+          [
+            1702453455.975,
+            "3004"
+          ],
+          [
+            1702453456.975,
+            "3996"
+          ],
+          [
+            1702453457.975,
+            "3011"
+          ],
+          [
+            1702453458.975,
+            "4011"
+          ],
+          [
+            1702453459.975,
+            "4009"
+          ],
+          [
+            1702453460.975,
+            "4001"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "90",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1998"
+          ],
+          [
+            1702453445.975,
+            "2000"
+          ],
+          [
+            1702453446.975,
+            "2010"
+          ],
+          [
+            1702453447.975,
+            "1990"
+          ],
+          [
+            1702453448.975,
+            "1993"
+          ],
+          [
+            1702453449.975,
+            "3001"
+          ],
+          [
+            1702453450.975,
+            "3001"
+          ],
+          [
+            1702453451.975,
+            "2011"
+          ],
+          [
+            1702453452.975,
+            "4022"
+          ],
+          [
+            1702453453.975,
+            "2442"
+          ],
+          [
+            1702453454.975,
+            "3566"
+          ],
+          [
+            1702453455.975,
+            "2996"
+          ],
+          [
+            1702453456.975,
+            "4020"
+          ],
+          [
+            1702453457.975,
+            "3001"
+          ],
+          [
+            1702453458.975,
+            "4022"
+          ],
+          [
+            1702453459.975,
+            "4022"
+          ],
+          [
+            1702453460.975,
+            "4017"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "91",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3011"
+          ],
+          [
+            1702453445.975,
+            "2010"
+          ],
+          [
+            1702453446.975,
+            "2998"
+          ],
+          [
+            1702453447.975,
+            "1999"
+          ],
+          [
+            1702453448.975,
+            "1999"
+          ],
+          [
+            1702453449.975,
+            "3002"
+          ],
+          [
+            1702453450.975,
+            "2396"
+          ],
+          [
+            1702453451.975,
+            "3588"
+          ],
+          [
+            1702453452.975,
+            "2998"
+          ],
+          [
+            1702453453.975,
+            "4003"
+          ],
+          [
+            1702453454.975,
+            "5010"
+          ],
+          [
+            1702453455.975,
+            "5012"
+          ],
+          [
+            1702453456.975,
+            "3002"
+          ],
+          [
+            1702453457.975,
+            "4017"
+          ],
+          [
+            1702453458.975,
+            "4011"
+          ],
+          [
+            1702453459.975,
+            "5002"
+          ],
+          [
+            1702453460.975,
+            "6997"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "92",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2990"
+          ],
+          [
+            1702453445.975,
+            "2776"
+          ],
+          [
+            1702453446.975,
+            "3481"
+          ],
+          [
+            1702453447.975,
+            "3775"
+          ],
+          [
+            1702453448.975,
+            "2738"
+          ],
+          [
+            1702453449.975,
+            "2606"
+          ],
+          [
+            1702453450.975,
+            "2609"
+          ],
+          [
+            1702453451.975,
+            "1989"
+          ],
+          [
+            1702453452.975,
+            "4064"
+          ],
+          [
+            1702453453.975,
+            "2772"
+          ],
+          [
+            1702453454.975,
+            "3745"
+          ],
+          [
+            1702453455.975,
+            "3325"
+          ],
+          [
+            1702453456.975,
+            "2877"
+          ],
+          [
+            1702453457.975,
+            "2933"
+          ],
+          [
+            1702453458.975,
+            "2693"
+          ],
+          [
+            1702453459.975,
+            "3173"
+          ],
+          [
+            1702453460.975,
+            "2610"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "93",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "4001"
+          ],
+          [
+            1702453445.975,
+            "4992"
+          ],
+          [
+            1702453446.975,
+            "3012"
+          ],
+          [
+            1702453447.975,
+            "2998"
+          ],
+          [
+            1702453448.975,
+            "3991"
+          ],
+          [
+            1702453449.975,
+            "4010"
+          ],
+          [
+            1702453450.975,
+            "4013"
+          ],
+          [
+            1702453451.975,
+            "4017"
+          ],
+          [
+            1702453452.975,
+            "5128"
+          ],
+          [
+            1702453453.975,
+            "3860"
+          ],
+          [
+            1702453454.975,
+            "3136"
+          ],
+          [
+            1702453455.975,
+            "3316"
+          ],
+          [
+            1702453456.975,
+            "3106"
+          ],
+          [
+            1702453457.975,
+            "3141"
+          ],
+          [
+            1702453458.975,
+            "2679"
+          ],
+          [
+            1702453459.975,
+            "3520"
+          ],
+          [
+            1702453460.975,
+            "3001"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "94",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1991"
+          ],
+          [
+            1702453445.975,
+            "3988"
+          ],
+          [
+            1702453446.975,
+            "2996"
+          ],
+          [
+            1702453447.975,
+            "5011"
+          ],
+          [
+            1702453448.975,
+            "1995"
+          ],
+          [
+            1702453449.975,
+            "1996"
+          ],
+          [
+            1702453450.975,
+            "3007"
+          ],
+          [
+            1702453451.975,
+            "4993"
+          ],
+          [
+            1702453452.975,
+            "5005"
+          ],
+          [
+            1702453453.975,
+            "3998"
+          ],
+          [
+            1702453454.975,
+            "3991"
+          ],
+          [
+            1702453455.975,
+            "3489"
+          ],
+          [
+            1702453456.975,
+            "2911"
+          ],
+          [
+            1702453457.975,
+            "2736"
+          ],
+          [
+            1702453458.975,
+            "3481"
+          ],
+          [
+            1702453459.975,
+            "2592"
+          ],
+          [
+            1702453460.975,
+            "3161"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "95",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "1005"
+          ],
+          [
+            1702453445.975,
+            "1999"
+          ],
+          [
+            1702453446.975,
+            "2002"
+          ],
+          [
+            1702453447.975,
+            "1992"
+          ],
+          [
+            1702453448.975,
+            "2006"
+          ],
+          [
+            1702453449.975,
+            "2007"
+          ],
+          [
+            1702453450.975,
+            "2009"
+          ],
+          [
+            1702453451.975,
+            "2009"
+          ],
+          [
+            1702453452.975,
+            "1998"
+          ],
+          [
+            1702453453.975,
+            "4003"
+          ],
+          [
+            1702453454.975,
+            "3000"
+          ],
+          [
+            1702453455.975,
+            "4004"
+          ],
+          [
+            1702453456.975,
+            "2006"
+          ],
+          [
+            1702453457.975,
+            "3010"
+          ],
+          [
+            1702453458.975,
+            "3001"
+          ],
+          [
+            1702453459.975,
+            "3995"
+          ],
+          [
+            1702453460.975,
+            "3007"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "96",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "3001"
+          ],
+          [
+            1702453445.975,
+            "3002"
+          ],
+          [
+            1702453446.975,
+            "3010"
+          ],
+          [
+            1702453447.975,
+            "1990"
+          ],
+          [
+            1702453448.975,
+            "2999"
+          ],
+          [
+            1702453449.975,
+            "2000"
+          ],
+          [
+            1702453450.975,
+            "3000"
+          ],
+          [
+            1702453451.975,
+            "4010"
+          ],
+          [
+            1702453452.975,
+            "5008"
+          ],
+          [
+            1702453453.975,
+            "4009"
+          ],
+          [
+            1702453454.975,
+            "5021"
+          ],
+          [
+            1702453455.975,
+            "3989"
+          ],
+          [
+            1702453456.975,
+            "2992"
+          ],
+          [
+            1702453457.975,
+            "8486"
+          ],
+          [
+            1702453458.975,
+            "3440"
+          ],
+          [
+            1702453459.975,
+            "3349"
+          ],
+          [
+            1702453460.975,
+            "2636"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "97",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2679"
+          ],
+          [
+            1702453445.975,
+            "3290"
+          ],
+          [
+            1702453446.975,
+            "3302"
+          ],
+          [
+            1702453447.975,
+            "2363"
+          ],
+          [
+            1702453448.975,
+            "2582"
+          ],
+          [
+            1702453449.975,
+            "2738"
+          ],
+          [
+            1702453450.975,
+            "3317"
+          ],
+          [
+            1702453451.975,
+            "2762"
+          ],
+          [
+            1702453452.975,
+            "3020"
+          ],
+          [
+            1702453453.975,
+            "3089"
+          ],
+          [
+            1702453454.975,
+            "3677"
+          ],
+          [
+            1702453455.975,
+            "2811"
+          ],
+          [
+            1702453456.975,
+            "2675"
+          ],
+          [
+            1702453457.975,
+            "2901"
+          ],
+          [
+            1702453458.975,
+            "3100"
+          ],
+          [
+            1702453459.975,
+            "3115"
+          ],
+          [
+            1702453460.975,
+            "3435"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "98",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2989"
+          ],
+          [
+            1702453445.975,
+            "2994"
+          ],
+          [
+            1702453446.975,
+            "2009"
+          ],
+          [
+            1702453447.975,
+            "3005"
+          ],
+          [
+            1702453448.975,
+            "3003"
+          ],
+          [
+            1702453449.975,
+            "3004"
+          ],
+          [
+            1702453450.975,
+            "4014"
+          ],
+          [
+            1702453451.975,
+            "3009"
+          ],
+          [
+            1702453452.975,
+            "4016"
+          ],
+          [
+            1702453453.975,
+            "5989"
+          ],
+          [
+            1702453454.975,
+            "4772"
+          ],
+          [
+            1702453455.975,
+            "4234"
+          ],
+          [
+            1702453456.975,
+            "3987"
+          ],
+          [
+            1702453457.975,
+            "4011"
+          ],
+          [
+            1702453458.975,
+            "6010"
+          ],
+          [
+            1702453459.975,
+            "5203"
+          ],
+          [
+            1702453460.975,
+            "2578"
+          ]
+        ]
+      },
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "container": "theodolite-kafka-kafka-exporter",
+          "endpoint": "tcp-prometheus",
+          "instance": "192.168.24.111:9404",
+          "job": "default/theodolite-kafka-exporter-podmonitor",
+          "namespace": "default",
+          "partition": "99",
+          "pod": "theodolite-kafka-kafka-exporter-55ccb958dc-2j7vn",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453444.975,
+            "2004"
+          ],
+          [
+            1702453445.975,
+            "2003"
+          ],
+          [
+            1702453446.975,
+            "2009"
+          ],
+          [
+            1702453447.975,
+            "2004"
+          ],
+          [
+            1702453448.975,
+            "2008"
+          ],
+          [
+            1702453449.975,
+            "3014"
+          ],
+          [
+            1702453450.975,
+            "3999"
+          ],
+          [
+            1702453451.975,
+            "3004"
+          ],
+          [
+            1702453452.975,
+            "3999"
+          ],
+          [
+            1702453453.975,
+            "2998"
+          ],
+          [
+            1702453454.975,
+            "3017"
+          ],
+          [
+            1702453455.975,
+            "4997"
+          ],
+          [
+            1702453456.975,
+            "3014"
+          ],
+          [
+            1702453457.975,
+            "4020"
+          ],
+          [
+            1702453458.975,
+            "3008"
+          ],
+          [
+            1702453459.975,
+            "4990"
+          ],
+          [
+            1702453460.975,
+            "3002"
+          ]
+        ]
+      }
+    ]
+  }
+}
\ No newline at end of file
diff --git a/theodolite/src/test/resources/prometheus-response/single-timeseries-nomillis.json b/theodolite/src/test/resources/prometheus-response/single-timeseries-nomillis.json
new file mode 100644
index 0000000000000000000000000000000000000000..44bb1bc00b08d2a0757b41d1b44aa61fed635342
--- /dev/null
+++ b/theodolite/src/test/resources/prometheus-response/single-timeseries-nomillis.json
@@ -0,0 +1,60 @@
+{
+  "status": "success",
+  "data": {
+    "resultType": "matrix",
+    "result": [
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453465,
+            "345824"
+          ],
+          [
+            1702453466,
+            "306612"
+          ],
+          [
+            1702453467,
+            "337641"
+          ],
+          [
+            1702453468,
+            "320957"
+          ],
+          [
+            1702453469,
+            "334418"
+          ],
+          [
+            1702453470,
+            "327339"
+          ],
+          [
+            1702453471,
+            "311165"
+          ],
+          [
+            1702453472,
+            "342963"
+          ],
+          [
+            1702453473,
+            "328380"
+          ],
+          [
+            1702453474,
+            "314322"
+          ],
+          [
+            1702453475,
+            "326701"
+          ]
+        ]
+      }
+    ]
+  }
+}
\ No newline at end of file
diff --git a/theodolite/src/test/resources/prometheus-response/single-timeseries.json b/theodolite/src/test/resources/prometheus-response/single-timeseries.json
new file mode 100644
index 0000000000000000000000000000000000000000..78ef97d8f57f61641e4b6d3f9e38701698f8ffbb
--- /dev/null
+++ b/theodolite/src/test/resources/prometheus-response/single-timeseries.json
@@ -0,0 +1,520 @@
+{
+  "status": "success",
+  "data": {
+    "resultType": "matrix",
+    "result": [
+      {
+        "metric": {
+          "consumergroup": "shufflebench-kstreams",
+          "topic": "input"
+        },
+        "values": [
+          [
+            1702453425.792,
+            "45827.099200000026"
+          ],
+          [
+            1702453426.792,
+            "52723.40266666667"
+          ],
+          [
+            1702453427.792,
+            "60765.52030769229"
+          ],
+          [
+            1702453428.792,
+            "67724.00274285715"
+          ],
+          [
+            1702453429.792,
+            "77071.35011555557"
+          ],
+          [
+            1702453430.792,
+            "77806.98444444445"
+          ],
+          [
+            1702453431.792,
+            "90319.11422188251"
+          ],
+          [
+            1702453432.792,
+            "95559.55282962965"
+          ],
+          [
+            1702453433.792,
+            "102681.91541052636"
+          ],
+          [
+            1702453434.792,
+            "110680.77280000002"
+          ],
+          [
+            1702453435.792,
+            "118175.76382222223"
+          ],
+          [
+            1702453436.792,
+            "125235.98559999997"
+          ],
+          [
+            1702453437.792,
+            "133313.9763130435"
+          ],
+          [
+            1702453438.792,
+            "141982.56413333333"
+          ],
+          [
+            1702453439.792,
+            "150182.53309866664"
+          ],
+          [
+            1702453440.792,
+            "157938.50800000003"
+          ],
+          [
+            1702453441.792,
+            "165152.25259259256"
+          ],
+          [
+            1702453442.792,
+            "173734.9929142857"
+          ],
+          [
+            1702453443.792,
+            "181751.8033655173"
+          ],
+          [
+            1702453444.792,
+            "189359.48100229882"
+          ],
+          [
+            1702453445.792,
+            "195329.68965517235"
+          ],
+          [
+            1702453446.792,
+            "201464.6896551724"
+          ],
+          [
+            1702453447.792,
+            "206828.79310344832"
+          ],
+          [
+            1702453448.792,
+            "212666.41379310348"
+          ],
+          [
+            1702453449.792,
+            "219041.89655172417"
+          ],
+          [
+            1702453450.792,
+            "225580.8620689655"
+          ],
+          [
+            1702453451.792,
+            "233049.82758620693"
+          ],
+          [
+            1702453452.792,
+            "241729.99999999997"
+          ],
+          [
+            1702453453.792,
+            "248566.5172413793"
+          ],
+          [
+            1702453454.792,
+            "256626.17241379313"
+          ],
+          [
+            1702453455.792,
+            "263996.7586206896"
+          ],
+          [
+            1702453456.792,
+            "267141.20689655177"
+          ],
+          [
+            1702453457.792,
+            "273647.34482758614"
+          ],
+          [
+            1702453458.792,
+            "276918.17241379316"
+          ],
+          [
+            1702453459.792,
+            "275514.8739531925"
+          ],
+          [
+            1702453460.792,
+            "289042.39246662747"
+          ],
+          [
+            1702453461.792,
+            "295689.0344827587"
+          ],
+          [
+            1702453462.792,
+            "299088.44827586215"
+          ],
+          [
+            1702453463.792,
+            "302463.9655172414"
+          ],
+          [
+            1702453464.792,
+            "306671.20689655177"
+          ],
+          [
+            1702453465.792,
+            "309965.79310344823"
+          ],
+          [
+            1702453466.792,
+            "313291.17241379304"
+          ],
+          [
+            1702453467.792,
+            "315435.8965517242"
+          ],
+          [
+            1702453468.792,
+            "318519.3103448276"
+          ],
+          [
+            1702453469.792,
+            "321809.172413793"
+          ],
+          [
+            1702453470.792,
+            "325093.1379310345"
+          ],
+          [
+            1702453471.792,
+            "328073.79310344823"
+          ],
+          [
+            1702453472.792,
+            "331127.7586206897"
+          ],
+          [
+            1702453473.792,
+            "333080.99999999994"
+          ],
+          [
+            1702453474.792,
+            "334463.68965517235"
+          ],
+          [
+            1702453475.792,
+            "337053.1034482758"
+          ],
+          [
+            1702453476.792,
+            "338064.41379310336"
+          ],
+          [
+            1702453477.792,
+            "339256.79310344806"
+          ],
+          [
+            1702453478.792,
+            "340640.13793103455"
+          ],
+          [
+            1702453479.792,
+            "340302.8965517242"
+          ],
+          [
+            1702453480.792,
+            "340739.03448275855"
+          ],
+          [
+            1702453481.792,
+            "338241.13793103455"
+          ],
+          [
+            1702453482.792,
+            "336843.68965517235"
+          ],
+          [
+            1702453483.792,
+            "333786.24137931026"
+          ],
+          [
+            1702453484.792,
+            "330203.724137931"
+          ],
+          [
+            1702453485.792,
+            "329070.2068965517"
+          ],
+          [
+            1702453486.792,
+            "325565.6206896553"
+          ],
+          [
+            1702453487.792,
+            "323903.31034482754"
+          ],
+          [
+            1702453488.792,
+            "320569.2413793104"
+          ],
+          [
+            1702453489.792,
+            "319020.51724137936"
+          ],
+          [
+            1702453490.792,
+            "318235.3448275862"
+          ],
+          [
+            1702453491.792,
+            "317969.0689655172"
+          ],
+          [
+            1702453492.792,
+            "317677.3103448276"
+          ],
+          [
+            1702453493.792,
+            "316547.03123922495"
+          ],
+          [
+            1702453494.792,
+            "316003.4137931034"
+          ],
+          [
+            1702453495.792,
+            "315336.27586206887"
+          ],
+          [
+            1702453496.792,
+            "315274.13793103455"
+          ],
+          [
+            1702453497.792,
+            "312991.3448275861"
+          ],
+          [
+            1702453498.792,
+            "312337.65517241374"
+          ],
+          [
+            1702453499.792,
+            "312506.96551724133"
+          ],
+          [
+            1702453500.792,
+            "311033.4482758621"
+          ],
+          [
+            1702453501.792,
+            "309570.68965517246"
+          ],
+          [
+            1702453502.792,
+            "309230.41379310354"
+          ],
+          [
+            1702453503.792,
+            "308299.14146812406"
+          ],
+          [
+            1702453504.792,
+            "306043.6206896553"
+          ],
+          [
+            1702453505.792,
+            "306161.7241379311"
+          ],
+          [
+            1702453506.792,
+            "306388.79310344823"
+          ],
+          [
+            1702453507.792,
+            "305580.1379310345"
+          ],
+          [
+            1702453508.792,
+            "305641.44827586215"
+          ],
+          [
+            1702453509.792,
+            "305662.3103448276"
+          ],
+          [
+            1702453510.792,
+            "304721.55172413803"
+          ],
+          [
+            1702453511.792,
+            "304220.5978691861"
+          ],
+          [
+            1702453512.792,
+            "303531.6896551724"
+          ],
+          [
+            1702453513.792,
+            "303937.5862068966"
+          ],
+          [
+            1702453514.792,
+            "304194.4482758622"
+          ],
+          [
+            1702453515.792,
+            "303117.2413793105"
+          ],
+          [
+            1702453516.792,
+            "303564.275862069"
+          ],
+          [
+            1702453517.792,
+            "303871.82758620684"
+          ],
+          [
+            1702453518.792,
+            "303023.9310344827"
+          ],
+          [
+            1702453519.792,
+            "302069.0000000001"
+          ],
+          [
+            1702453520.792,
+            "301651.6896551723"
+          ],
+          [
+            1702453521.792,
+            "301092.2758620691"
+          ],
+          [
+            1702453522.792,
+            "300639.56134905847"
+          ],
+          [
+            1702453523.792,
+            "300419.51724137925"
+          ],
+          [
+            1702453524.792,
+            "300222.10344827577"
+          ],
+          [
+            1702453525.792,
+            "299006.0689655174"
+          ],
+          [
+            1702453526.792,
+            "300240.5517241379"
+          ],
+          [
+            1702453527.792,
+            "300220.48275862064"
+          ],
+          [
+            1702453528.792,
+            "299525.1379310345"
+          ],
+          [
+            1702453529.792,
+            "299322.99999999994"
+          ],
+          [
+            1702453530.792,
+            "300305.9999999998"
+          ],
+          [
+            1702453531.792,
+            "299742.79310344846"
+          ],
+          [
+            1702453532.792,
+            "291230.3614539058"
+          ],
+          [
+            1702453533.792,
+            "281468.3237925926"
+          ],
+          [
+            1702453534.792,
+            "271455.4275794871"
+          ],
+          [
+            1702453535.792,
+            "261288.143408"
+          ],
+          [
+            1702453536.792,
+            "251146.61436111113"
+          ],
+          [
+            1702453537.792,
+            "241390.022452174"
+          ],
+          [
+            1702453538.792,
+            "230399.12869090916"
+          ],
+          [
+            1702453539.792,
+            "221125.3156"
+          ],
+          [
+            1702453540.792,
+            "211518.3795306796"
+          ],
+          [
+            1702453541.792,
+            "201742.17143157902"
+          ],
+          [
+            1702453542.792,
+            "190820.63507407412"
+          ],
+          [
+            1702453543.792,
+            "180676.1147686275"
+          ],
+          [
+            1702453544.792,
+            "172003.79995000002"
+          ],
+          [
+            1702453545.792,
+            "160685.19543999998"
+          ],
+          [
+            1702453546.792,
+            "150690.0318"
+          ],
+          [
+            1702453547.792,
+            "141092.0908615384"
+          ],
+          [
+            1702453548.792,
+            "131065.18059999999"
+          ],
+          [
+            1702453549.792,
+            "121379.87103030298"
+          ],
+          [
+            1702453550.792,
+            "110942.14616000002"
+          ]
+        ]
+      }
+    ]
+  }
+}
\ No newline at end of file