← home
RESEARCH · OPERATIONS

LLM cost dashboards.

Operations guide · 11 June 2026

By the LLM CFO team

An LLM cost dashboard is a set of views that connect spend to your product decisions: which features use which models, how much they cost, and where the waste is. A good dashboard answers "what changed and why?" A bad one shows you only totals, which tells you nothing until the bill arrives.

Why most dashboards fail

Teams usually build dashboards that are too broad and too shallow. They create a single "total spend this month" number, or they show every dimension at once without filtering. The result is visual noise that doesn't drive action. The fix is to start narrow: pick one question (like "which feature is costing the most?"), show the ranked list of answers, and drill into the top three results. Let tagging and data quality come first. Dashboards are secondary.

The five views that matter

Start with these five. They cover the most common cost drivers and are directly actionable.

View 1: Spend by feature

View 2: Spend by model

View 3: Spend by customer or workspace

View 4: Token trends (input, output, cache-read)

View 5: Cache-hit and retry rates

Telemetry schema: where to get these fields

OpenTelemetry's GenAI semantic conventions define the fields above and map them to both provider-native formats and observability backends. Use them as your standard because they allow you to switch from Langfuse to Helicone to your own warehouse without rebuilding your telemetry layer. The key fields are: gen_ai.request.model.name, gen_ai.usage.input_tokens, gen_ai.usage.output_tokens, gen_ai.usage.cache_read_tokens, gen_ai.request.frequency_penalty, and custom attributes for your feature name and customer ID.

How to emit this data

Common dashboard mistakes and how to avoid them

Dashboard rule: if you cannot tell from your five core views whether the spike came from prompt growth, model drift, a new customer, retries, or one noisy feature, your tagging is still incomplete.

Where to build these views

You have three options, depending on your infrastructure. (1) Observability platforms like Langfuse and Helicone offer built-in dashboards for these exact views; use their UI directly. (2) Warehouse BI tools like Grafana, Tableau, or Metabase let you query your own data; these give you the most control but require a warehouse layer. (3) Custom internal dashboards: build them if you have a data team and specific needs no vendor covers. Start with option 1 or 2 before building custom.

Related

← Back to llmcfo.com