{{ result.summaryTitle }}
{{ result.primaryDisplay }}
{{ result.secondaryText }}
{{ result.statusText }} {{ result.rawDailyBadge }} {{ result.retentionBadge }} {{ result.replicaBadge }} {{ result.compressionBadge }}
Events Retention Compression Quota
Observability event volume inputs
Enter the observed events per second, minute, hour, or day for this stream.
Use measured average bytes per event when possible; include labels or JSON fields if they are part of the stored payload.
Use the configured retention window for this stream or tier.
days
Use 1 for a single stored copy, 2 for one replica, or your platform's equivalent copy factor.
Compression is applied before replication so copied data reflects the compressed retained stream.
%
Optional stream, service, namespace, index, or dataset label.
Leave 0 when vendor usage already reports stored bytes including indexes.
%
Keep 0 for the direct estimate; add a reserve only for planning headroom.
%
Set 0 to skip quota checks.
Metric Value Detail Copy
{{ row.metric }} {{ row.value }} {{ row.detail }}
Guardrail Setting Reading Operator action Copy
{{ row.guardrail }} {{ row.setting }} {{ row.reading }} {{ row.action }}
Customize
Advanced
:

Introduction:

Telemetry storage planning usually becomes urgent after a small operational change such as a service logging request bodies, a trace library adding more span attributes, a metrics exporter emitting one sample for every customer, or a team extending hot retention from one week to one month. Traffic may look unchanged, but the retained bytes can climb because every event carries size, every day adds another copy of the stream, and every storage tier has its own overhead.

Observability event volume is the amount of data created by logs, traces, metrics, and normalized telemetry records over time. The basic unit is one stored event, such as a log record, a trace span, a metric sample, or an event envelope. Two numbers define the starting pressure: how many events arrive during a period and how many bytes the average event occupies before compression or backend-specific encoding.

Diagram showing event rate and event size becoming raw daily volume, retained days, stored copies, headroom, and a quota marker.

Retention turns a daily stream into a capacity commitment. A service that emits 50 GiB per day consumes roughly 350 GiB before compression after seven days, and about 1.5 TiB before compression after thirty days. Replica copies, indexing structures, label indexes, segment metadata, and reserve capacity can add more bytes after that. Compression may reduce the retained payload, but it does not fix noisy instrumentation, unnecessary fields, or a retention policy that keeps the wrong data hot.

Several terms are easy to mix together. Ingest volume is the stream arriving at the collector or vendor. Indexed volume is the part made searchable. Retained volume is the bytes kept for the chosen time window. Billable volume may follow a vendor rule that counts compressed bytes, uncompressed bytes, scanned data, archived data, or a combination of several meters. A storage estimate is most useful when it names which of those quantities is being planned.

Sampling, filtering, field pruning, and retention tiering change the answer before storage math starts. The safest planning habit is to model one stream, namespace, index, or service at a time, then reconcile the estimate against measured backend counters. The number can show whether a plan is plausible; it cannot decide whether a particular log line, span attribute, or metric label is worth keeping.

How to Use This Tool:

Use the calculator for one telemetry stream or retained dataset at a time. Start with measured values from your collector, log backend, trace backend, metrics store, or vendor usage report when they are available.

  1. Enter Event rate and choose the matching unit. If a collector reports events per minute, hour, or day, keep that unit rather than converting by hand.
  2. Enter Average event size. Include labels, JSON fields, span attributes, and envelope bytes when those bytes are stored with each event.
  3. Set Retention period, Replication factor, and Compression savings. The replication value is the total stored copy count, so 2x means one primary copy plus one replica.
  4. Open Advanced when you need an Export label, Index overhead, Reserve allowance, or Storage quota. Leave overhead or reserve at 0% when those bytes are already included in the measured event size.
  5. Read the summary status before using the total. Fix needs input, investigate over quota, review assumptions at quota watch, and verify measured counters when large stream appears.
  6. Use Volume Footprint for the calculation audit, Cost Guardrail for operator actions, Retention Runway Curve for retention choices, Storage Mix for stored-byte components, and JSON for handoff.

Interpreting Results:

Total retained storage is the capacity estimate to compare with a configured quota or budget limit. Raw daily volume is better for source-noise discussions because it shows how much data arrives before retention, compression, replicas, overhead, and reserve change the total.

Observability event volume result statuses
Status Meaning Check next
needs inputOne or more required numeric values is missing or outside the valid range.Correct rate, size, retention, replication, compression, quota, overhead, or reserve before using the estimate.
over quotaTotal retained storage is greater than the configured quota.Reduce retention, sample or filter events, lower stored copies, prune fields, or raise the capacity limit.
quota watchTotal retained storage is at least 80% of the quota.Validate the average event size and keep explicit headroom for bursts and backfills.
large streamRaw daily volume is at least 1 TiB before storage factors.Review sampling, noisy categories, and high-cardinality labels before extending retention.
volume plannedNo validation error or quota warning applies to the entered values.Compare the estimate with platform counters before budget approval.

Stored daily run rate spreads the modeled retained storage across the retention window. It helps compare one stream with another, but it is not the same as the raw ingest rate. Storage Mix separates primary compressed bytes, replica bytes, index overhead, and reserve so an unexpectedly large component can be checked against the storage policy that created it.

A clean result is still an estimate. Vendor dashboards may count decimal units instead of binary units, charge on ingest rather than retained bytes, apply downsampling, delay deletion after retention expires, or store archives separately from searchable data. Treat the output as a planning model and reconcile it against the counters your platform exposes.

Technical Details:

The storage model separates incoming telemetry from retained capacity. Event rate and average event size form the raw daily byte count. Retention multiplies that daily count across whole retained days. Compression reduces the retained payload, replica policy duplicates the compressed retained data, and optional overhead and reserve add the bytes that are not part of the primary payload.

Sampling and filtering belong upstream of the event rate. If the rate is measured after sampling, the estimate describes the retained stream. If the rate is measured before sampling, apply the expected drop rate first or the result will describe the pre-filter stream. The same rule applies to event size: use the stored payload size when available, and avoid adding index overhead again if the vendor counter already includes it.

Formula Core:

The equations below use binary-byte arithmetic for displayed storage units. Percent values are used as fractions, so 55% compression savings leaves 45% of the retained raw bytes.

Eday = Esecond×86400 BrawDay = Eday×Bevent BrawRetained = BrawDay×D Bcompressed = BrawRetained×(1-C) Breplicated = Bcompressed×R Bindex = Breplicated×I Breserve = (Breplicated+Bindex)×H Bstored = Breplicated+Bindex+Breserve
Formula symbol map for observability event volume
Symbol Meaning Handling note
EsecondEvent rate normalized to events per second.Events per minute, hour, or day are converted to a per-second baseline.
BeventAverage bytes for one log record, span, metric sample, or normalized event.Inputs can be bytes, KiB, or MiB per event.
DWhole retained days.Values below one day are invalid for planning.
CCompression savings as a decimal fraction.55% savings is used as 0.55.
RTotal stored copy factor.A value of 2 means one primary copy and one replica.
IIndex overhead as a fraction of replicated retained bytes.Use only when payload size excludes index, label, segment, or routing overhead.
HReserve allowance as a fraction of replicated bytes plus index overhead.Use for bursts, replay, late arrivals, shard imbalance, and measurement uncertainty.

Index overhead is applied after replication, and reserve is applied after replicated storage plus index overhead. This order keeps the retained payload, copied bytes, index structures, and planning headroom auditable as separate stored-byte components. The storage quota, when set, does not change the calculation; it only supplies the warning boundary for quota status and the retention curve.

Input validation rules for observability event volume
Input Valid planning range Why it matters
Event rateGreater than 0.A zero rate cannot produce a retained stream.
Average event sizeGreater than 0.The model needs a positive byte size for each event.
Retention periodAt least 1 day.Retention is modeled as retained days, not sub-day cache residency.
Replication factorAt least 1x.Less than one stored copy has no capacity meaning.
Compression savings0% to 100%.Savings above 100% would make retained bytes negative.
Index overhead and Reserve allowance0% or higher.Negative overhead or reserve would hide required capacity.
Storage quota0 or higher.0 disables quota warnings; a positive value enables comparison.

Displayed byte units use binary prefixes such as GiB and TiB. Some vendor pages use decimal units, separate ingest and retention meters, exclude data already marked for deletion, or show only searchable hot storage. Reconcile both the numerator and the unit system before comparing the estimate with a bill, quota, or capacity dashboard.

Worked Examples:

A trace stream emitting 850 events per second at 740 bytes per event produces about 50.6 GiB raw per day. With 21 retained days, 55% compression savings, and 2x total copies, the final storage is just under 1 TiB before index overhead and reserve.

A busy log stream at 2,000 events per second and 1 KiB per event produces about 164.8 GiB raw per day. With 30 days retained, 50% compression, 2x replication, 20% index overhead, and 15% reserve, Total retained storage exceeds a 5 TiB quota and should be treated as over quota.

A metric-event stream at 120 events per second and 1,500 bytes per event, retained for 14 days with 35% compression, one stored copy, 10% overhead, and 20% reserve lands below 200 GiB. Against a 500 GiB quota, the estimate leaves comfortable headroom.

A troubleshooting case often starts with a warning rather than a final number. If the summary says large stream, inspect Raw daily volume first. A stream at 5,000 events per second and 512 bytes per event creates about 206 GiB raw per day, so even short retention can become expensive after replication, overhead, and reserve.

FAQ:

What counts as one event?

Use the unit your system stores or reports. For logs it may be one log record, for traces it may be a span, and for metrics it may be a sample or a normalized event envelope.

Should average event size include labels and attributes?

Yes, when those bytes are stored with the record. If your backend reports stored bytes per event after parsing, compression, and indexing, use that measured value and avoid adding the same overhead again.

Why does retention change the result so much?

Retention multiplies raw daily volume before compression and replica copies are applied. Doubling retained days roughly doubles the byte base unless sampling, filtering, tiering, or deletion rules change at the same time.

Why is compression applied before replication?

The model treats compression or stored encoding as part of the primary retained copy. Replica copies then duplicate that compressed retained data.

When should I add reserve?

Add reserve when the stream is bursty, delayed flushes are common, replays or backfills happen, shards are uneven, or the average event size is based on a small sample. Keep reserve at 0% for a direct estimate.

Does the calculator inspect telemetry data?

No. It models storage from numeric inputs and an optional label typed in the browser. It does not connect to a log store, trace backend, metrics system, or collector.

Advanced Tips:

  • Keep Event rate aligned with the same point in the telemetry path each time. A rate measured before sampling cannot be compared directly with a rate measured after collector drops.
  • Use Index overhead only when the measured Average event size excludes searchable index, label, segment, or routing structures. Adding it to a stored-byte counter can double-count backend overhead.
  • Treat Compression savings as a stored-size assumption, not a quality fix. Removing noisy fields, high-cardinality labels, or duplicate events changes the raw daily volume before compression starts.
  • Use Retention Runway Curve before changing hot retention. The same raw stream may stay under quota at 14 days and cross the warning line at 45 or 90 days.
  • Read Storage Mix when the total looks surprising. Replica copies, overhead, and reserve are separated so the oversized part can be checked against the platform policy that caused it.
  • Set a positive Storage quota for planning reviews. The quota watch status starts at 80%, leaving time to reduce retention, sample categories, or move older data to a lower-cost tier.

Glossary:

Event rate
How many telemetry records are produced over time, normalized to events per second for calculation.
Average event size
The mean retained byte size of one log record, span, metric sample, or event envelope before the modeled compression savings.
Raw daily volume
Events per day multiplied by average event size before retention and storage factors.
Retention period
The number of whole days the stream remains searchable or retained in the modeled tier.
Compression savings
The percent reduction applied to raw retained bytes before replica copies are counted.
Replication factor
The total stored copy multiplier, including the primary copy.
Index overhead
Extra storage for indexes, labels, segment metadata, routing data, or similar backend structures.
Reserve allowance
Planning headroom for bursts, late arrivals, replay, and uneven storage distribution.

References: