Trace, Span, and Service: Core Concepts :: Kloudfuse Docs

Trace, Span, and Service: Core Concepts

Table of Contents

A trace represents a complete request or transaction as it moves through various services in a distributed system. It contains multiple spans, each representing a single unit of work within a service. A service is any independently deployable component that handles part of the transaction.

Trace

A trace is a collection of spans that together show the journey of a request across services.

Span

A span represents an individual operation within a service.

Service

A service is a logically grouped unit of software with a network endpoint.

Relationships