惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
月光博客
月光博客
B
Blog RSS Feed
C
Check Point Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
GbyAI
GbyAI
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
美团技术团队
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
A
About on SuperTechFans
G
Google Developers Blog
爱范儿
爱范儿
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
人人都是产品经理
人人都是产品经理

Coralogix

Automate Product Analyticsreports with your agent and the CX CLI - Coralogix Loop Engineering Guardrails for iGaming with Claude Code and CX CLI - Coralogix How iGaming Operators Trace Revenue Problems to Root Cause What is the Parquet file format? A complete guide Zero-Code Instrumentation in Kubernetes Without the Instrumentation CRD - Coralogix Olly says Hi: Scheduled tasks now report to Slack and email - Coralogix Introducing Coralogix Product Analytics - Coralogix Introducing the new Coralogix Metrics Engine - Coralogix Set a monthly budget on every Olly API Key - Coralogix Best Sentry Alternatives for Error Tracking (2026) Coralogix | Magic Quadrant 2025 How Redpin achieved full-stack observability across a £10 billion international payments platform - Coralogix Coralogix vs Sumo Logic: Pricing & Features Coralogix vs New Relic: Comparison Guide (2026) Where did all my Claude Code tokens go?  - Coralogix The AI bill arrived. Now what? - Coralogix The Data Plane Reality: OTel Scales, While Topology UX Lags - Coralogix The Observability Dataset: Architecture That Takes Agents From Junior to Senior - Coralogix Un-observable AI is Un-trustworthy AI - Coralogix Dataspaces and Datasets: A faster, goverened, observability data layer - Coralogix Stop Guessing Why Your Pods Are Crashing Coralogix Raises $200M to Scale the Observability Backbone for the Age of AI DataPrime at ingest (DPXL): See the impact of any routing decision New Explore: Faster answers, less friction, and a better way to investigate your data Explore for Spans: One View with Infinite Depth What Is Log Monitoring? Pipeline, Pitfalls, and Practices for 2026 What Is APM? A Guide to Application Performance Monitoring What Is an Incident Commander? Role, Skills, and Best Practices Managing OpenTelemetry at Scale: Why OTel Pipelines Need a Control Plane Introducing the Coralogix CLI: Headless Observability for Every Agent
The cost of knowledge
Ofri.grushka@coralogix.com · 2026-05-06 · via Coralogix

In the world of observability, “cardinality” has become a heavy word. It is a ghost used to justify skyrocketing bills or degraded query performance. When cardinality rises, the advice is almost always the same: reduce it. Drop your labels, or   reduce the dimensions.

It is usually framed as “optimization.” 

Every label you add to a metric is a dimension of knowledge. Each one gives you a way to slice, compare, and explain the chaos of production. Every time you remove a label, you are limiting the depth or width of your knowledge. 

And then there is the cost of knowledge. It’s not merely about storage, but also the price of your ability to ask questions over time.

The two faces of the bill

To understand why observability feels so expensive, we have to look at how knowledge is taxed.

  1. The write cost: This is the overhead of storing knowledge. It is what platforms charge you to keep metrics with the dimensions that actually matter, such as merchant_id or pod_id.
  2. The read cost: This is the tax on curiosity. Sometimes it appears as a per-query charge. More often, it is hidden behind timeouts, forced rollups, or degraded resolution.

Most observability architectures are forced into a trade-off: they either prioritize high-volume ingestion at the expense of long-range query performance, or they protect query stability by making high-cardinality ingestion prohibitively expensive. This creates a ceiling for engineering teams, where they must choose between seeing the full picture today or being able to analyze trends over the last month.

Why high cardinality is inevitable: The churn factor

You do not need to be Netflix to hit billion-scale cardinality. You just need to use modern infrastructure.

Systems today are built on Kubernetes, autoscaling, and ephemeral pods. These behaviors create constant identity churn. Even if you only have 200 pods running right now, a rolling deployment or a busy week of autoscaling can easily result in 2,000 unique pod identities over a 90-day window.

When you multiply that infrastructure churn by business dimensions, such as 10,000 unique merchants or 100,000 content IDs, your cumulative cardinality explodes.

Scenario 1: A payments platform

Imagine a mid-market payments company. They are not global giants, but they have 10,000 merchants and deploy code weekly. Their metric for a successful payment looks like this: payment_success_total {service, region, merchant_id, pod}

At first glance, the team only sees the “active series,” which represents the pods running right now. That is not what breaks a system. What breaks the system is the union of every series that needs to be scanned for the query window.

This happens because a query is a search through history, not just a look at the present. While only 200 pods might be active today, a 30-day window captures every ephemeral pod created and destroyed during dozens of deployments. The database must scan the union of all those unique identities to calculate a trend. This cumulative “identity debt” is what causes queries to slow down or fail, even when your real-time dashboards look perfectly healthy.

When an incident hits and you ask which merchants had a p95 latency spike over the last 30 days, your system has to scan every merchant ID multiplied by every pod that has existed for a month. If your platform taxes you based on these combinations, you are faced with a brutal choice. You must drop the merchant_id to save money and lose the ability to tell which customers are hurting.

Scenario 2: A streaming platform

In a streaming environment, the killer is content ID accumulation. A few thousand shows might be live, but over a quarter, you might track over 100,000 unique pieces of content.

Combined with pod churn, the system is not just reading more data points. It is reading a massive web of unique identities. This changes the difficulty class of your queries. If your observability tool cannot handle the interaction between business IDs and infrastructure IDs, your long-range dashboards will simply stop loading right when you need them for a post-mortem.

The label you cannot drop

When cardinality explodes, the first instinct is to drop the pod or instance label. This is often a mistake.

In Prometheus-style metrics, the label set is the identity of the time series. If three different pods emit counters into a single series because you dropped the pod label, those writes collide. At best, you get a “last writer wins” scenario. At worst, you get interleaving counter values that break functions like rate().

Dropping the pod label does not just lose debugging detail. It can literally corrupt your data, leading to false alerts and unreliable metrics.

Cardinality is the shadow of reality


High cardinality is not a user mistake or a misconfiguration. It is the natural result of measuring a real, complex system with enough fidelity to actually fix it.

The real question is not whether you can reduce cardinality. The real question is whether your observability platform forces you to trade away knowledge to stay within a budget.

  • In traditional SaaS: You pay a cardinality tax where every new label combination bends the pricing curve until it breaks.
  • In DIY systems: You pay in operational rent, constantly scaling your own compute just to keep your head above water.
  • In Coralogix: We focus on ingestion volume. Cardinality does not bend the pricing curve because the marginal cost of knowing “one more thing” should not be an existential threat to your budget.

Dropping labels is a choice not to know. When the next incident hits, the bill you pay is not just in dollars. It is the time and confidence you lost because you chose to be blind.

Scale without the blind spots

Coralogix removes the forced choice between your budget and your visibility. We act as partners in your growth, ensuring that as your infrastructure and cardinality scale, your ability to ask questions scales with it. Stop dropping labels and start measuring reality. Ready to learn more? Sign up here now.