Telemetry
For SaaS teams metering billable product usage

Usage-Based Billing Analytics

Build a defensible usage ledger, quota dashboard, overage workflow, and billing reconciliation from idempotent structured events.

Reviewed by the Telemetry product team on . Event contract, recommended analysis, and privacy boundaries. Editorial ownership

Why this works
  • Separate logical billable units from raw event volume.
  • Detect quota thresholds and overages before invoice finalization.
  • Reconcile meter totals with the billing provider and account plan.

Agent prompt

Paste this into your coding agent

Replace YOUR_API_KEY after signup, then ask the agent to run the product flow and verify the first events.

agent prompt

Usage-Based Billing Analytics setup prompt

text
Instrument usage-based billing with Telemetry.

Use /skill.md and this Telemetry API key: YOUR_API_KEY

Log one usage_meter_recorded event at the final billable boundary with meter_event_id, account_id, plan, feature, unit_name, billable_units, included_units, billing_period, and status. Use an idempotency key that survives retries.

Also log append-only usage adjustments, quota-threshold notifications, exports, and reconciliation outcomes. Create dashboards for monthly quota burn, usage by feature and plan, overages, and provider reconciliation differences.

Do not log payment details, invoice documents, credentials, or raw customer content. Do not use request count as billable quantity unless the commercial contract defines it that way.

Setup steps

  1. 1Define one billable unit and the workflow boundary where it becomes final.
  2. 2Emit an idempotent meter event with account, plan, quantity, and unit.
  3. 3Compare monthly usage with the included quota and provider aggregate.
  4. 4Review adjustments and plan changes before invoices become final.

Events to capture

usage_meter_recordedusage_adjustment_recordedquota_threshold_reachedusage_export_completedinvoice_meter_reconciled

Questions unlocked

  • Which accounts are approaching or exceeding included usage?
  • Do internal meter totals match the billing provider?
  • Which features and plans create the most billable units?

Related SQL recipes

Answer the next question with SQL

Run the query against the structured fields from this workflow, inspect the example result, and turn a useful answer into a dashboard or alert.

Browse all recipes

Next step

Create the API key your agent will use

The free plan is enough to run the prompt, send test events, and review the first dashboard.

Related pages