Per-product cost & margin analysis

Understanding your product's infrastructure costs helps you make pricing decisions, contextualize growth reviews, and catch problems early. This guide covers how to build per-product cost allocations.

Why this matters

As products scale, margins matter. A product with healthy margins can afford aggressive pricing; one with tight margins needs to be more careful. You can't know which you're in without understanding costs.

Cost visibility also helps you:

  • Spot inefficiencies (why is this component 3x more expensive than expected?)
  • Measure engineering wins (did that optimization actually save money?)
  • Make pricing decisions (can we afford a price cut?)
  • Catch cost spikes before they become problems

When to do this

This makes sense for:

  • Products with product market fit
  • Products with meaningful revenue
  • Products with non-trivial infrastructure (storage, compute-heavy)
  • Products where you're considering pricing changes

For early-stage products, don't bother. Ship first, optimize later.

The process

1. Map your architecture

Before talking to infra, sketch out what your product actually uses.

Write path: How does data get in?

  • What services process incoming data?
  • What queues buffer it?
  • Where does it get stored?

Read path: How does data get back to users?

  • What services handle queries?
  • What databases get hit?

Storage: Where does data live?

  • S3 buckets
  • ClickHouse tables
  • Redis/caches
  • Postgres

You don't need to be perfect. The infra team will validate. But a rough diagram saves time.

2. Understand the cost buckets

Infrastructure costs fall into two types:

TypeWhat it meansExamplesHow to allocate
DirectTagged specifically for your productProduct-specific k8s nodepools, dedicated S3 buckets100% to your product
SharedUsed by multiple productsLoad balancers, reverse proxies, shared cachesProportional (e.g., 20% of traffic = 20% of cost)

Direct costs are easy. Shared costs require estimating your product's share of usage.

3. Work with infra on tagging

Reach out to #team-infrastructure to kick off the process – they can help you estimate your product's traffic share and navigate the tooling.

We use a FinOps tool for cost allocation. The infrastructure team sets up allocation tags that group AWS resources by product/function.

What you bring:

  • Your architecture diagram
  • List of services that should be allocated to your product
  • An engineer who can validate the list is complete

What infra does:

  • Verifies which resources are already tagged
  • Identifies gaps (resources that should be allocated but aren't)
  • Sets up allocation rules
  • Creates reports you can pull

Expect iteration. First allocations are rarely complete. Common gaps:

  • Inter-AZ data transfer (network costs between availability zones)
  • Shared infrastructure not proportionally allocated
  • Read-path resources missing (easy to focus only on write path)

ClickHouse costs (separate process)

If your product queries ClickHouse, you'll need to work with #team-clickhouse to get query cost attribution. This is separate from FinOps tagging.

ClickHouse costs are attributed by analyzing query_log to see which queries belong to your product. The ClickHouse team can help set up a query or dashboard to track this. Note that query attribution may require code changes to tag queries with a product identifier — this isn't just a dashboard exercise.

For some products (like Session Replay), ClickHouse query costs are a small percentage of total – queries are lightweight (list/fetch metadata). For analytics-heavy products, ClickHouse costs will be a much larger share.

We run ClickHouse in multiple regions (e.g., US and EU), make sure you account for costs in each.

4. Interpret the tags

The FinOps tool organizes costs using allocation tags. Here's how to think about them:

Product-specific tags (direct costs)

  • These capture resources dedicated to your product

  • Example: a "session replay" tag might include capture services, message queues, and S3 storage

  • Use these as-is – 100% goes to your product

Shared infrastructure tags (need a proxy)

  • These capture resources used by everyone

  • Example: an "ingress" tag might include load balancers and reverse proxies for all products

  • You need to estimate your product's share (e.g., "my product is ~20% of traffic, so allocate 20% of ingress costs")

Network transfer tags

  • Inter-AZ transfer costs show up separately from compute
  • Filter these tags to your product's services to get direct network costs

When pulling reports, make sure you're not double-counting. If you select multiple tags, check whether they overlap.

5. Build the cost model

Once you have the cost data, build a simple model for unit economics.

Get the totals:

  • Total cost from FinOps tool (direct + allocated share of shared)
  • Total volume from billing tables (recordings, events, whatever your unit is)

Calculate unit economics:

cost_per_unit = total_cost / total_volume
revenue_per_unit = total_revenue / total_volume
margin = (revenue_per_unit - cost_per_unit) / revenue_per_unit

Break down by component (optional but useful):

cost_per_unit = compute_cost/volume + (storage_rate × avg_size × retention_period)

This helps you understand what drives costs. For storage-heavy products, storage will be significant portion of costs. For compute-heavy products, compute dominates.

Test your assumptions. Key inputs like traffic share, retention period, and storage rates are estimates. Check how sensitive your margin is to these — if your traffic proxy is 20% ± 5%, what's the range? If effective retention is 60 days vs 90 days, how much does storage cost swing? If the answer changes materially, document the range rather than a point estimate.

6. Document your assumptions

Every cost model has assumptions. Write them down so future-you (or someone else) understands what's in vs out.

Common things to document:

  • What's included in "direct" costs
  • What proxy you used for shared costs (and why)
  • How you calculated volume (billable units? ingested units?)
  • Retention assumptions for storage costs
  • What's explicitly NOT included

7. Set up monitoring

Once your allocation is stable, set up alerts:

  • Total product cost: alert if week-over-week change > 15%
  • Individual components: alert if WoW change > 25%

You want to catch:

  • Runaway cost increases
  • Broken tagging (cost dropped 50%? probably a bug)
  • Optimization wins (did that change save money?)

8. Add to growth reviews

Include margin metrics in your growth reviews:

MetricNotes
Total costFrom FinOps tool
Cost per unitTotal cost / volume
Gross margin(Revenue - Cost) / Revenue
Cost trendMoM change

Healthy products have stable or improving margins as they scale. If margins are declining, investigate.

What to expect

Timeline: 2-4 weeks to get a reliable allocation, depending on how well-tagged your resources are.

Accuracy: First pass is typically 80-90% complete. Shared resources and edge cases take time. Directionally correct is fine; perfect is not required.

Keeping it current

Cost models rot. The two main causes:

  • Architecture changes. When your product adds new services, storage backends, or processing pipelines, the cost allocation needs updating. Build this into your launch process — when shipping a new component, close the loop with infra and your FinOps team to get it tagged before you lose track of it.

  • Tagging breakage. Warehouse syncs, allocation rules, and report configurations can break silently. If your cost dashboard suddenly drops or flatlines, check the data pipeline before assuming costs actually changed. Set up a staleness check (e.g., alert if latest data is more than 3 days old).

Review your cost model quarterly at minimum, or whenever you ship significant infrastructure changes.

Common mistakes

  • Ignoring shared infrastructure. Your product uses load balancers, proxies, and other shared resources. If you only count dedicated resources, you're understating costs.

  • Forgetting network costs. Inter-AZ data transfer is easy to miss. It can be 5-10% of total costs.

  • Expecting precision. This is cost allocation, not accounting. You're trying to understand rough margins and trends, not get to the penny.

    • Double-counting within shared infrastructure tags. An allocation rule may already bundle multiple resource types together. For example, an ingress tag might include both proxy compute and load balancers. Verify what's inside each tag before adding components separately — otherwise you'll overcount shared costs.
  • Not involving your FinOps vendor. If you use a FinOps tool, loop in their support team to validate allocation rules. They can confirm what's bundled inside a tag faster than you can reverse-engineer it from reports.

Worked example

See the Session Replay unit economics RFC for a complete example of this process applied to a real product.

Contacts

  • Infrastructure / cost tooling: #team-infrastructure
  • ClickHouse cost attribution: #team-clickhouse
  • Billing data: Billing team

Community questions

Was this page useful?

Questions about this page? or post a community question.