|
| 1 | +// Module included in the following assemblies: |
| 2 | +// |
| 3 | +// * observability/distr-tracing-architecture.adoc |
| 4 | +// * service_mesh/v2x/ossm-architecture.adoc |
| 5 | +// * service_mesh/v1x/ossm-architecture.adoc |
| 6 | +// * serverless/observability/tracing/serverless-tracing.adoc |
| 7 | + |
| 8 | +:_mod-docs-content-type: CONCEPT |
| 9 | +[id="distr-tracing-tempo-key-concepts-in-distributed-tracing_{context}"] |
| 10 | += Key concepts in distributed tracing |
| 11 | + |
| 12 | +Every time a user takes an action in an application, a request is executed by the architecture that may require dozens of different services to participate to produce a response. |
| 13 | +{DTProductName} lets you perform distributed tracing, which records the path of a request through various microservices that make up an application. |
| 14 | + |
| 15 | +_Distributed tracing_ is a technique that is used to tie the information about different units of work together — usually executed in different processes or hosts — to understand a whole chain of events in a distributed transaction. |
| 16 | +Developers can visualize call flows in large microservice architectures with distributed tracing. |
| 17 | +It is valuable for understanding serialization, parallelism, and sources of latency. |
| 18 | + |
| 19 | +{DTProductName} records the execution of individual requests across the whole stack of microservices, and presents them as traces. A _trace_ is a data/execution path through the system. An end-to-end trace consists of one or more spans. |
| 20 | + |
| 21 | +A _span_ represents a logical unit of work in {DTProductName} that has an operation name, the start time of the operation, and the duration, as well as potentially tags and logs. Spans may be nested and ordered to model causal relationships. |
| 22 | + |
| 23 | +As a service owner, you can use distributed tracing to instrument your services to gather insights into your service architecture. |
| 24 | +You can use {DTProductName} for monitoring, network profiling, and troubleshooting the interaction between components in modern, cloud-native, microservices-based applications. |
| 25 | + |
| 26 | +With {DTShortName}, you can perform the following functions: |
| 27 | + |
| 28 | +* Monitor distributed transactions |
| 29 | +
|
| 30 | +* Optimize performance and latency |
| 31 | +
|
| 32 | +* Perform root cause analysis |
| 33 | +
|
| 34 | +You can combine {DTShortName} with other relevant components of the {product-title}: |
| 35 | + |
| 36 | +* {OTELName} for forwarding traces to a TempoStack instance |
| 37 | +
|
| 38 | +* Distributed tracing UI plugin of the {coo-first} |
0 commit comments