Skip to content

Instantly share code, notes, and snippets.

@medzhidov
Last active July 4, 2022 15:26
Show Gist options
  • Select an option

  • Save medzhidov/4b5d214ddad08804d7810a4aad79520e to your computer and use it in GitHub Desktop.

Select an option

Save medzhidov/4b5d214ddad08804d7810a4aad79520e to your computer and use it in GitHub Desktop.

Revisions

  1. medzhidov revised this gist Jul 4, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    # This will starts only agent, to start core of Jaeger you need also this:
    #
    # https://gist.github.com/medzhidov/668c1250ccb8b5f5f1d53e98da420465

    version: "3"

  2. medzhidov created this gist Jul 4, 2022.
    17 changes: 17 additions & 0 deletions docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    # This will starts only agent, to start core of Jaeger you need also this:
    #

    version: "3"

    services:
    jaeger-agent:
    image: jaegertracing/jaeger-agent
    # replace JAEGER-HOST with host of your started jaeger
    command: ["--reporter.grpc.host-port=JAEGER-HOST:14250", "--log-level=info"]
    ports:
    # remove "127.0.0.1:" if you need to make this ports accessible in internet
    - "127.0.0.1:5775:5775/udp"
    - "127.0.0.1:6831:6831/udp"
    - "127.0.0.1:6832:6832/udp"
    - "127.0.0.1:5778:5778"
    restart: on-failure