X-Git-Url: http://juplo.de/gitweb/?a=blobdiff_plain;f=docker-compose.yml;h=e32cbde324c035e77971e42c1dd5d026b5083df1;hb=HEAD;hp=e1b616003ca48a10b19a490f0958dc66f9a6e08a;hpb=0b5b8306f7f5f83fb36bb88c75b78377b3896961;p=demos%2Fkafka%2Fmonitoring diff --git a/docker-compose.yml b/docker-compose.yml index e1b6160..e32cbde 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,9 @@ services: kafka-1: build: kafka environment: + KAFKA_ENABLE_KRAFT: 'false' KAFKA_OPTS: + -javaagent:/opt/prometheus/jmx_prometheus_javaagent.jar=80:/opt/prometheus/config.yml -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=7000 -Dcom.sun.management.jmxremote.authenticate=false @@ -40,7 +42,9 @@ services: kafka-2: build: kafka environment: + KAFKA_ENABLE_KRAFT: 'false' KAFKA_OPTS: + -javaagent:/opt/prometheus/jmx_prometheus_javaagent.jar=80:/opt/prometheus/config.yml -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=7000 -Dcom.sun.management.jmxremote.authenticate=false @@ -69,7 +73,9 @@ services: kafka-3: build: kafka environment: + KAFKA_ENABLE_KRAFT: 'false' KAFKA_OPTS: + -javaagent:/opt/prometheus/jmx_prometheus_javaagent.jar=80:/opt/prometheus/config.yml -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=7000 -Dcom.sun.management.jmxremote.authenticate=false @@ -90,18 +96,72 @@ services: depends_on: - zookeeper + kafka-4: + build: kafka + environment: + KAFKA_ENABLE_KRAFT: 'false' + KAFKA_OPTS: + -javaagent:/opt/prometheus/jmx_prometheus_javaagent.jar=80:/opt/prometheus/config.yml + -Dcom.sun.management.jmxremote=true + -Dcom.sun.management.jmxremote.port=7000 + -Dcom.sun.management.jmxremote.authenticate=false + KAFKA_CFG_ZOOKEEPER_CONNECT: zookeeper:2181 + KAFKA_CFG_LISTENERS: BROKER://:9092, LOCALHOST://:9084 + KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: BROKER:PLAINTEXT, LOCALHOST:PLAINTEXT + KAFKA_CFG_ADVERTISED_LISTENERS: BROKER://kafka-4:9092, LOCALHOST://localhost:9084 + KAFKA_BROKER_ID: 4 + ALLOW_PLAINTEXT_LISTENER: 'yes' + KAFKA_CFG_INTER_BROKER_LISTENER_NAME: BROKER + KAFKA_CFG_OFFSETS_TOPIC_REPLICATION_FACTOR: 3 + KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE: "false" + volumes: + - kafka-4:/bitnami/kafka + ports: + - 9084:9084 + - 7004:7000 + depends_on: + - zookeeper + + kafka-5: + build: kafka + environment: + KAFKA_ENABLE_KRAFT: 'false' + KAFKA_OPTS: + -javaagent:/opt/prometheus/jmx_prometheus_javaagent.jar=80:/opt/prometheus/config.yml + -Dcom.sun.management.jmxremote=true + -Dcom.sun.management.jmxremote.port=7000 + -Dcom.sun.management.jmxremote.authenticate=false + KAFKA_CFG_ZOOKEEPER_CONNECT: zookeeper:2181 + KAFKA_CFG_LISTENERS: BROKER://:9092, LOCALHOST://:9085 + KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: BROKER:PLAINTEXT, LOCALHOST:PLAINTEXT + KAFKA_CFG_ADVERTISED_LISTENERS: BROKER://kafka-5:9092, LOCALHOST://localhost:9085 + KAFKA_BROKER_ID: 5 + ALLOW_PLAINTEXT_LISTENER: 'yes' + KAFKA_CFG_INTER_BROKER_LISTENER_NAME: BROKER + KAFKA_CFG_OFFSETS_TOPIC_REPLICATION_FACTOR: 3 + KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE: "false" + volumes: + - kafka-5:/bitnami/kafka + ports: + - 9085:9085 + - 7005:7000 + depends_on: + - zookeeper + setup: image: juplo/toolbox command: > bash -c " kafka-topics --bootstrap-server kafka:9092 --delete --if-exists --topic test - kafka-topics --bootstrap-server kafka:9092 --create --topic test --partitions 2 --replication-factor 3 --config min.insync.replicas=2 + kafka-topics --bootstrap-server kafka:9092 --create --topic test --partitions 33 --replication-factor 3 --config min.insync.replicas=2 kafka-topics --bootstrap-server kafka:9092 --describe --topic test " depends_on: - kafka-1 - kafka-2 - kafka-3 + - kafka-4 + - kafka-5 cli: image: juplo/toolbox @@ -110,6 +170,8 @@ services: - kafka-1 - kafka-2 - kafka-3 + - kafka-4 + - kafka-5 burrow: build: burrow @@ -147,19 +209,45 @@ services: - ./prometheus.yml:/etc/prometheus/prometheus.yml grafana: - image: grafana/grafana + image: grafana/grafana:10.0.3 ports: - "3000:3000" + environment: + GF_SECURITY_ADMIN_USER: juplo + GF_SECURITY_ADMIN_PASSWORD: juplo volumes: + - ./grafana/dashboard.yml:/etc/grafana/provisioning/dashboards/main.yaml + - ./grafana/datasource.yml:/etc/grafana/provisioning/datasources/automatic.yaml + - ./kafka-brokers.json:/var/lib/grafana/dashboards/main-dashboard.json - grafana:/var/lib/grafana producer: image: juplo/simple-producer:1.0-SNAPSHOT + entrypoint: >- + java + -Dcom.sun.management.jmxremote=true + -Dcom.sun.management.jmxremote.port=7000 + -Dcom.sun.management.jmxremote.local.only=false + -Dcom.sun.management.jmxremote.authenticate=false + -Dcom.sun.management.jmxremote.ssl=false + -jar /opt/app.jar command: kafka:9092 test producer + ports: + - 7010:7000 consumer: image: juplo/simple-consumer:1.0-SNAPSHOT + entrypoint: >- + java + -Dcom.sun.management.jmxremote=true + -Dcom.sun.management.jmxremote.port=7000 + -Dcom.sun.management.jmxremote.local.only=false + -Dcom.sun.management.jmxremote.authenticate=false + -Dcom.sun.management.jmxremote.ssl=false + -jar /opt/app.jar command: kafka:9092 test my-group consumer + ports: + - 7020:7000 volumes: @@ -167,4 +255,6 @@ volumes: kafka-1: kafka-2: kafka-3: + kafka-4: + kafka-5: grafana: