diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-07-25 11:12:29 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-07-31 10:14:25 +0100 |
commit | 65b870baf15ceaa336c1290a8bb920b48875a3a0 (patch) | |
tree | 6640f54681d1853d07e9a6a3da501d6e139ee0c1 /docker-compose | |
parent | b33ea92a29a2724750554ebb412cf841fbe8c2a8 (diff) |
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 <halil.cakal@est.tech>
Diffstat (limited to 'docker-compose')
-rw-r--r-- | docker-compose/docker-compose.yml | 12 |
1 files changed, 12 insertions, 0 deletions
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: |