inovex / godays-demo

Tracing Demo for https://www.godays.io/ 2020

Home Page:https://youtu.be/XSMMwFwnhgQ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoDays Demo

Each step of the demo can be built using docker-compose build --build-arg step=4. Then run the demo: docker-compose up -d

The docker-compose up -d command will start 3 containers:

  • Jaeger all-in-one (contains all services for Jaeger), exposed at localhost:16686
  • Backend Service, exposed at localhost:8080
  • Frontend Service, exposed at localhost:8081

We can produce some traces with:

for i in {1..10}; do curl 'http://localhost:8081/toastoftheday'; done

Now go to the Jaeger UI and inspect the traces.

Cleanup

docker-compose stop && docker-compose rm -f

About

Tracing Demo for https://www.godays.io/ 2020

https://youtu.be/XSMMwFwnhgQ

License:Apache License 2.0


Languages

Language:Go 98.0%Language:Dockerfile 2.0%