Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Adding Zipkin to the Docker Compose files

Pragya Keshap answered on February 18, 2023 Popularity 5/10 Helpfulness 1/10

Contents


More Related Answers

  • docker compose up specific yml
  • run zipkin-server on docker
  • docker compose import db dump
  • portainer docker compose file
  • install zipkin docker
  • docker compose from Dockerfile
  • how to up docker compose file with docker desktop
  • docker compose recreate
  • docker-compose with file name
  • Composer install with dockerfile
  • copy file to docker conatiner using docker dockerfile
  • generate docker compose file for creating wordpress
  • simple docker-compose file
  • traefik docker compose examples
  • insert bash command to docker-compose file
  • docker compose file for mern stack
  • The Docker Compose File
  • mount txt file on docker compose
  • create docker-compose.yml from dockerfile
  • Changes in the Docker Compose files
  • docker compose build dockerfile with different name
  • Docker Compose file structure
  • way to specify single file in docker compose up

  • Adding Zipkin to the Docker Compose files

    0

    the Zipkin server is added to the Docker Compose files using an already existing Docker image, openzipkin/zipkin, published by the Zipkin project. In docker-compose.yml and docker-compose-partitions.yml, where RabbitMQ is used

    The version of the Docker image, openzipkin/zipkin, is specified to be version 2.23.2.

    The RABBIT_ADDRESSES=rabbitmq environment variable is used to specify that Zipkin will receive trace information using RabbitMQ and that Zipkin will connect to RabbitMQ using the hostname rabbitmq.

    The STORAGE_TYPE=mem environment variable is used to specify that Zipkin will keep all trace information in memory.

    The memory limit for Zipkin is increased to 1,024 MB, compared to 512 MB for all other containers. The reason for this is that since Zipkin is configured to keep all trace information in memory, it will consume more memory than the other containers after a while.

    Zipkin exposes the HTTP port 9411 for web browsers to access its web user interface.

    Docker will wait to start up the Zipkin server until the RabbitMQ service reports being healthy to Docker.

    https://github.com/openzipkin-attic/docker-zipkin/blob/master/docker-compose.yml

    Popularity 5/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on Feb 18 2023
    Pragya Keshap
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.