Lexicon

Telemetry

Telemetry is the data systems emit about their own behavior: logs, metrics, and traces. What each signal answers, and how the three connect in practice.

Definition

Telemetry is the data software and infrastructure emit about their own behavior. In observability it means three signals: logs, the record of what happened; metrics, the numbers that trend over time; and traces, the paths requests take through the system.

What it means in observability

Telemetry is the raw material everything else is made from, and each signal answers a different shape of question. Metrics are cheap and fast, ideal for is anything wrong. Traces explain where in a distributed flow the problem lives. Logs carry the detail of what exactly happened at that spot. Mature practices treat them as one connected dataset rather than three products, because real investigations hop between signals constantly: an alert on a metric, a trace to localize it, logs to explain it.

How it works in practice

Instrumentation produces telemetry inside applications and platforms, collectors and pipelines transport and shape it, and backends store and index each signal for its access pattern. What binds the signals together is shared context: resource attributes identify the emitting service and environment on every signal, and trace identifiers on log records connect logs to the requests that produced them. That shared context is what turns three data streams into one investigation surface.

Where it gets hard

Volume is the defining problem. Telemetry grows faster than the systems it describes, and AI era architectures accelerated the curve, so cost pressure pushes teams toward dropping, sampling, and shortening retention, each of which trades away coverage. Correlation is the other perennial gap: signals collected by different tools with different metadata never quite line up, and engineers pay the difference during incidents.

Where Tsuga fits

Tsuga treats logs, metrics, and traces as one correlated dataset with shared context, priced flat per GB and stored inside your own cloud account. The economics are designed so keeping your telemetry is the default, not the luxury.

Related terms