This tutorial is a full walkthrough about using jaeger.
It goes with this lecutre distributed-tracing-101.
First we will build a monolith demo app.
We will graduely improve it by adding more logs, tracking and jaeger capabilties.
- Clone the repo
git clone [email protected]:itielshwartz/jaeger-hello-world.git
- Have a docker installed
- Have a virtulenv installed
python3 -m venv venv && source venv/bin/activate
- Install the requirements
pip install requirements.txt
Step 2 - The monolith going wild
Step 6 - Distribute single span
It is based on the (great) opentracing-tutorial.