Skip to content
← Back to blog

Cloud and platform

OpenTelemetry: observability without vendor lock-in

How to connect traces, metrics and logs around operational questions instead of decorative dashboards.

Published on May 12, 20268 min read
OpenTelemetrySRETracing

Observability means explaining internal state from system outputs. OpenTelemetry provides vendor-neutral instrumentation, collection and export for traces, metrics and logs, but it is not the storage backend.

Adoption works best around critical journeys. Context propagation connects a request to dependencies, errors and latency without reconstructing the story manually.

Editorial visual

The path of an observable signal

Signal topology

Application

Traces, metrics and logs

Collector

Process, filter and sample

Backend

Store and query

Response

SLO, alert and investigation

A single context propagation links the journey before the team chooses where signals are stored.

The Collector decouples applications from destinations and can enrich, filter, sample and export signals while protecting sensitive data.

Instrumenting everything without a model raises cost and noise. Naming conventions, cardinality limits, retention and service objectives should come before more dashboards.

Start with operational questions

Write the questions before adding instrumentation: which payments complete, where latency accumulates, which dependency explains an error and which version introduced the regression. Those questions define attributes, events and metrics. Instrumenting first often creates expensive data nobody knows how to query.

Propagate context end to end

The trace identifier should cross HTTP, messaging and asynchronous jobs. Spans need stable names and controlled-cardinality attributes. Unique identifiers, emails and full payloads are poor metric dimensions and can expose sensitive information.

Use the Collector as an operating boundary

A per-node deployment or central gateway can enrich signals, remove secrets, apply sampling and route by environment. Topology depends on volume and failure tolerance. The Collector also needs its own metrics: queues, drops, export latency and memory pressure.

Control cost and noise

Sampling should preserve errors, slow operations and high-value journeys instead of using only a uniform percentage. Retention and resolution differ by signal. A useful alert maps to a service objective and includes enough context to begin investigation without opening five dashboards.

Neutrality with purpose

OpenTelemetry reduces instrumentation lock-in, but it does not remove product decisions. Success is measured by how quickly a team can explain an incident and verify an improvement, not by how many signals it stores.