Implement distributed tracing with Jaeger and Zipkin for tracking requests across microservices. Use when debugging distributed systems, tracking request flows, or analyzing service performance.
3f5182cSet up distributed tracing infrastructure with Jaeger or Zipkin to track requests across microservices and identify performance bottlenecks.
Minimal working example:
# docker-compose.yml
version: "3.8"
services:
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "16686:16686"
- "14268:14268"
networks:
- tracing
networks:
tracing:
Detailed implementations in the references/ directory:
| Guide | Contents | |---|---| | Jaeger Setup | Jaeger Setup, Node.js Jaeger Instrumentation | | Express Tracing Middleware | Express Tracing Middleware | | Python Jaeger Integration | Python Jaeger Integration | | Distributed Context Propagation | Distributed Context Propagation | | Zipkin Integration | Zipkin Integration, Trace Analysis |
Copy a source-pinned command for your client. You run it yourself.
Destination: .claude/skills/distributed-tracing · pinned to the source commit
git clone https://github.com/aj-geddes/useful-ai-prompts.git
cd useful-ai-prompts
git checkout 3f5182cfd739fc113f4af5244a1cf342ad7f7911
mkdir -p ".claude/skills/distributed-tracing"
cp -r "skills/distributed-tracing" ".claude/skills/distributed-tracing"Review the source before running. This copies files into your project; it is not a one-click install and does not verify runtime safety.
Scanner static-checks@0.1.0 · commit 3f5182cfd739. Static checks cannot prove runtime safety – review the source and the exact diff before installing. How checks work.
No static rules matched. This is not a safety guarantee.