KCNA · Question #26
What is the telemetry component that represents a series of related distributed events that encode the end-to-end request flow through a distributed system?
The correct answer is D. Traces. Traces are telemetry components that represent the end-to-end request flow through a distributed system by encoding a series of related events.
Question
What is the telemetry component that represents a series of related distributed events that encode the end-to-end request flow through a distributed system?
Options
- AMetrics
- BLogs
- CSpans
- DTraces
How the community answered
(28 responses)- A4% (1)
- C7% (2)
- D89% (25)
Why each option
Traces are telemetry components that represent the end-to-end request flow through a distributed system by encoding a series of related events.
Metrics are numerical measurements collected over time, typically aggregated, and do not represent the sequential flow of a single request.
Logs are discrete, timestamped events generated by applications or systems, but they typically provide granular details for individual operations rather than the overarching end-to-end request flow.
Spans are individual operations within a trace, representing a unit of work or a call between services, but a trace is the collection of these related spans forming the complete request path.
A trace captures the full lifecycle of a request as it propagates through various services and components in a distributed architecture, providing context for each operation and its duration.
Concept tested: Distributed tracing concepts
Source: https://opentelemetry.io/docs/concepts/signals/traces/
Topics
Community Discussion
No community discussion yet for this question.