Lexicon

Log management

Log management is collecting, processing, storing, and searching log data at scale. How the pipeline works and why log costs dominate observability bills.

Definition

Log management is the practice of collecting, processing, storing, and searching log data at scale: every event record your applications and infrastructure emit, made findable when someone needs it. It is the oldest discipline in observability and still the highest volume one.

What it means in observability

Logs are where the detail lives. Metrics summarize and traces localize, but when an engineer needs to know exactly what a service said at 14:03:27, the answer is a log line. That fidelity is also the problem: logs dwarf the other signals in volume, which is why log management is where observability cost pain concentrates and where pricing models based on ingestion and indexing bite hardest. How an organization manages logs, what it keeps, for how long, at what fidelity, is usually a budget decision wearing an engineering costume.

How it works in practice

The pipeline has three stages. Collection gathers logs from files, containers, and platforms, through collectors and forwarders, increasingly as structured OpenTelemetry log records. Processing happens in flight: parsing text into attributes, normalizing severity into consistent log levels, enriching with context, and redacting sensitive values. Storage and search then make the volume usable, with retention policies per environment or team, full text and attribute queries, and pattern grouping that collapses millions of similar lines into a readable handful.

Where it gets hard

Volume growth is relentless and mostly involuntary, since much log output comes from dependencies and platforms rather than your own code. Under cost pressure teams drop DEBUG in production, sample INFO, and shorten retention, and each cut is invisible until an incident lands in the gap. Compliance pulls the other way, demanding some logs be kept for years. The result is a permanent tension between what engineering wants to keep and what the invoice allows.

Where Tsuga fits

Tsuga prices logs flat per GB with retention controls per signal, environment, and team, and processing routes handle parsing, enrichment, and redaction at ingest. Running inside your own cloud account, log volume also stops generating egress costs on its way out the door.

Related terms