Intelligence — Overview
See what is happening with usage, revenue, and unit economics. Dashboard, Analytics, COGS & Margins, Reports, Usage Intelligence, Ingestion, Data Exports — one section, seven lenses.
Intelligence is the read side of the platform. Catalog, Pricing Studio, and the gateways feed it — and these seven pages are how you make sense of what came back. Executive snapshot, per-customer drill-down, gross-margin auditing, scheduled CFO reports, anomaly detection on usage, the ingestion pipeline that fuels it all, and the export path for everything else. Use the right lens for the question, not all of them at once.
What Intelligence covers#
Three buckets: operator visibility (Dashboard, Analytics, Usage Intelligence), finance visibility (COGS & Margins, Reports), and data plumbing (Ingestion, Data Exports). Each page is built around a specific question; the section index below maps page to question so you can jump straight to the right one.
Pages in this section#
Pick by question#
Almost every visit to this section is driven by one specific question. Find yours below and skip to the right page:
Real-time vs. batch#
Some surfaces refresh on every page load; others are populated by overnight jobs. Knowing which is which saves a lot of "the number is wrong" tickets.
Storage tiers under the hood#
Most reads go to PostgreSQL. High-cardinality time-series (event log, platform metrics, MCP tool invocations) tier into ClickHouse when CLICKHOUSE_ENABLED=true on analytics-service. The query router prefers ClickHouse and fails open to PostgreSQL — nothing ever shows "service unavailable" because the analytics tier is degraded; it just falls back.
Where the data physically lives
- PostgreSQL — invoices, subscriptions, customers, products, billable units, COGS events, the source of truth for everything financial.
- ClickHouse — platform_events, uptime_checks, health_metrics, usage_records, mcp_tool_invocations, storefront_conversion, api_endpoint_metrics. High-volume, append-only, batched in.
- Redis — short-TTL caches (current-spend, public-status-page, live-revenue buckets). Cache misses fall through to the primary store.
Related sections#
Intelligence answers "what happened." If you're trying to change what happens, you want a sibling section:
- Cost going up? Read COGS & Margins, then tighten policy in .
- Customer churning? Analytics → Customer Health, then act in Storefront → Customers + Trials & Conversion.
- Ingestion is broken? Operations → Event Log + Metering Health diagnose the failure mode.