Last active
July 4, 2022 15:26
-
-
Save medzhidov/4b5d214ddad08804d7810a4aad79520e to your computer and use it in GitHub Desktop.
Revisions
-
medzhidov revised this gist
Jul 4, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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" -
medzhidov created this gist
Jul 4, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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