From 65b870baf15ceaa336c1290a8bb920b48875a3a0 Mon Sep 17 00:00:00 2001 From: "halil.cakal" Date: Thu, 25 Jul 2024 11:12:29 +0100 Subject: Add k6 for legacy async batch passthrough read operation - add kafka support to k6 codebase - add two new tests: data operation batch passthrough read and data operation async batch read (from kafka) - calculate the events/second via Trend - add kafka ui support to docker-compose Note: Before this commit being merged, the k6 executable should have been compiled with the kafka extension of xk6-kafka Issue-ID: CPS-2268 Change-Id: Ib7777b7bc9f15b210ea36d3541cba0e0c943f883 Signed-off-by: halil.cakal --- docker-compose/docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'docker-compose') diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 86afe78926..f537cfe43c 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -181,5 +181,17 @@ services: profiles: - monitoring + kafka-ui: + container_name: kafka-ui + image: provectuslabs/kafka-ui:latest + ports: + - 8089:8080 + environment: + DYNAMIC_CONFIG_ENABLED: 'true' + KAFKA_CLUSTERS_0_NAME: 'cps-kafka-local' + KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:29092 + profiles: + - monitoring + volumes: grafana: -- cgit 1.2.3-korg