deploy/platform/docker/docker-compose.rocketmq-monitor.yaml (86 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. version: "3" services: rocketmq-namesrv-1: image: apache/rocketmq:4.9.4 hostname: rocketmq-namesrv-1 ports: - "9876:9876" environment: TZ: Asia/Shanghai command: sh mqnamesrv healthcheck: test: [ "CMD", "nc", "-nz", "127.0.0.1", "9876" ] interval: 15s timeout: 10s retries: 120 networks: - sw rocketmq-broker-1: image: apache/rocketmq:4.9.4 hostname: rocketmq-broker-1 ports: - "10911:10911" - "10909:10909" environment: TZ: Asia/Shanghai NAMESRV_ADDR: "rocketmq-namesrv-1:9876" command: sh mqbroker healthcheck: test: [ "CMD", "nc", "-nz", "127.0.0.1", "10911" ] interval: 15s timeout: 10s retries: 120 depends_on: rocketmq-namesrv-1: condition: service_healthy networks: - sw rocketmq-producer-perf-test: image: apache/rocketmq:4.9.4 hostname: rocketmq-producer-perf-test environment: TZ: Asia/Shanghai NAMESRV_ADDR: "rocketmq-namesrv-1:9876" command: sh tools.sh org.apache.rocketmq.example.quickstart.Producer depends_on: rocketmq-broker-1: condition: service_healthy networks: - sw rocketmq-consumer-perf-test: image: apache/rocketmq:4.9.4 hostname: rocketmq-consumer-perf-test environment: TZ: Asia/Shanghai NAMESRV_ADDR: "rocketmq-namesrv-1:9876" command: sh tools.sh org.apache.rocketmq.example.quickstart.Consumer depends_on: - rocketmq-producer-perf-test networks: - sw rocketmq-exporter: image: apache/rocketmq-exporter:0.0.2 hostname: rocketmq-exporter ports: - "5557:5557" environment: TZ: Asia/Shanghai rocketmq.config.namesrvAddr: "rocketmq-namesrv-1:9876" depends_on: - rocketmq-consumer-perf-test networks: - sw otel-collector: image: ${OTEL_COLLECTOR_IMAGE}:${OTEL_COLLECTOR_IMAGE_TAG} networks: - sw command: [ "--config=/etc/otel-collector-config.yaml" ] volumes: - ./config/rocketmq/otel-collector-rocketmq-config.yaml:/etc/otel-collector-config.yaml expose: - 55678 depends_on: oap: condition: service_healthy networks: sw: