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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Track AI Usage Without Losing Revenue (Complete Gu...
Ciroandrea · 2026-05-25 · via DEV Community

Most AI products eventually run into the same problem:

Tracking usage sounds simple.

Until it isn't.

At first, all you need is a counter.

A request comes in.

You decrement a credit.

You process the request.

Done.

Or at least that's what most teams think.

As usage grows, things start breaking:

  • duplicate requests
  • retries
  • race conditions
  • timeout failures
  • inconsistent balances
  • billing mismatches

And suddenly a simple counter becomes a revenue problem.


The Naive Implementation

Most products start with something similar to this:

if (credits > 0) {
  credits--;
  executeRequest();
}

Looks harmless.

The user has credits.

A request arrives.

A credit is consumed.

The request is executed.

Simple.

The problem is that real-world systems are rarely this simple.


What Starts Breaking

The moment real users start using your product at scale, unexpected situations appear.

Retries

Networks fail.

Browsers retry requests.

Mobile apps resend actions.

Background jobs run again.

A single user action can generate multiple identical requests.

Without protection, credits may be consumed multiple times.


Race Conditions

Imagine a user has one credit remaining.

Two requests arrive at exactly the same time.

Both processes check the balance.

Both see one available credit.

Both proceed.

Now the user consumed two requests while paying for one.

Or worse:

Your balance becomes negative.


Partial Failures

One of the most dangerous situations looks like this:

Consume credit
↓
Call AI provider
↓
Timeout

Did the AI provider process the request?

Maybe.

Did the user receive the result?

Maybe not.

Should you refund the credit?

Should you charge again?

These situations become surprisingly difficult to handle consistently.


How Revenue Leaks Happen

Most revenue leaks don't come from pricing mistakes.

They come from tracking mistakes.

A few common examples:

Free Usage

The request succeeds.

The credit is never consumed.

The user receives value for free.


Double Charging

A retry consumes credits twice.

The user gets charged more than expected.

Now support tickets start arriving.


Billing Mismatch

Your billing dashboard shows one number.

Your usage records show another.

Your invoices show a third.

Nobody knows which number is correct.


Missing Audit Trail

A customer asks:

Why was I charged?

You have no record explaining exactly what happened.

Now you're forced to guess.


A Safer Architecture

Reliable usage tracking requires more than a simple counter.

The goal is to create a system that is:

  • auditable
  • idempotent
  • atomic
  • reliable under concurrency

Use a Usage Ledger

Instead of simply decrementing balances, record every consumption event.

Example:

ID          USER      UNITS
--------------------------------
1           user_1    -10
2           user_1    -20
3           user_1    -15

This creates a complete history.

You always know:

  • what happened
  • when it happened
  • how many units were consumed

A balance becomes the result of ledger events rather than a standalone number.


Make Consumption Idempotent

Every usage operation should have a unique identifier.

Example:

request_id = 9f7d3c2a

If the same request arrives again:

  • do not consume credits again
  • return the original result

This prevents duplicate charges caused by retries.


Consume Credits Atomically

Checking balances and consuming usage should happen inside a single transaction.

Bad:

Read balance
↓
Check balance
↓
Update balance

Good:

Transaction
↓
Verify balance
↓
Consume units
↓
Commit

This prevents concurrency issues and race conditions.


Design for Auditability

Sooner or later a customer will ask:

Why was I charged for this?

You should be able to answer immediately.

Store:

  • request id
  • timestamp
  • user id
  • consumed units
  • operation type

A complete audit trail saves countless support hours.


Why Counting Requests Isn't Enough

Many teams assume:

1 request = 1 unit

But AI products rarely work this way.

Different operations have different costs.

For example:

Text generation     = 1 credit
Image generation    = 20 credits
Video generation    = 100 credits

What matters isn't request count.

What matters is billable usage.

That's the metric that should drive monetization.


Final Thoughts

Tracking AI usage seems easy when your product has ten users.

It becomes infrastructure when your product has thousands.

The challenge isn't counting requests.

The challenge is building a system that remains correct when:

  • requests are duplicated
  • jobs retry
  • users scale
  • revenue depends on every consumption event

Because once usage becomes your pricing model, tracking usage becomes part of your business model.

And every mistake eventually turns into lost revenue.


Learn More

If you're building AI credits, usage-based billing, or prepaid consumption systems, one of the most important concepts is maintaining an auditable usage history through a usage ledger.

I wrote more about the architecture behind credits, consumption tracking, entitlements and billing synchronization in the Licenzy documentation:

https://licenzy.app/docs/usage-metering

It includes examples for:

  • consumption tracking
  • idempotency
  • usage packs
  • credit-based monetization