Observability
Distributed Tracing
2 articles from official documentation
Practitioner2 articles
observabilitytracingPractitioner
Mastering Tracing with Jaeger: Insights for Production
Tracing is crucial for observability in microservices, and Jaeger is a powerful tool for this purpose. Understand how spans, traces, and sampling configurations work to optimize your tracing strategy.
- →Understand spans as logical units of work that represent operations with start times and durations.
- →Utilize Jaeger's sampling capabilities to manage data flow and prevent overload on storage.
5 min read·Official Docs
Read article observabilitytracingPractitioner
Mastering Context Propagation for Effective Tracing
Context propagation is crucial for tracing in microservices, ensuring that signals from one service correlate with another. By using the W3C TraceContext specification, you can effectively manage context across service boundaries.
- →Understand context as an object that correlates signals between services.
- →Use the W3C TraceContext specification for standardized context propagation.
5 min read·OpenTelemetry Docs
Read article