February 2019
Intermediate to advanced
444 pages
11h 36m
English
HotROD is a mock-up "ride-sharing" application (ROD stands for Rides on Demand) that is maintained by the Jaeger project. We will discuss its architecture later, but first let's try to run it. If you are using Docker, you can run it with this command:
$ docker run --rm -it \ --link jaeger \ -p8080-8083:8080-8083 \ jaegertracing/example-hotrod:1.6 \ all \ --jaeger-agent.host-port=jaeger:6831
Let's quickly review what is going on with this command:
rm flag instructs Docker to automatically remove the container once the program exits.it flags attach the container's standard in and out streams to the terminal.link flag tells Docker to make the hostname jaeger available inside the container's networking namespace and ...Read now
Unlock full access