Skip to content

WIP: OpenTracing: part 2 - grpc

Andrew Newdigate requested to merge an-opentracing into master
  1. Start jaeger:
docker run -d --name jaeger \
  -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
  -p 5775:5775/udp \
  -p 6831:6831/udp \
  -p 6832:6832/udp \
  -p 5778:5778 \
  -p 16686:16686 \
  -p 14268:14268 \
  -p 9411:9411 \
  jaegertracing/all-in-one:latest
  1. Start workhorse
JAEGER_SERVICE_NAME=workhorse JAEGER_SAMPLER_TYPE=const JAEGER_SAMPLER_PARAM=1 ./gitlab-workhorse
  1. Send some requests to workhorse.....

  2. Open http://localhost:16686/ to access the Jaeger UI...

image

  1. Profit!
Edited by Andrew Newdigate

Merge request reports