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

推荐订阅源

Martin Fowler
Martin Fowler
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
L
LangChain Blog
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园_首页
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
美团技术团队
V
V2EX

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
Missing AI agent cost data is not zero
Patrick Hughes · 2026-06-19 · via DEV Community

Missing AI agent cost data is not zero

My agent spend ledger showed $0 for the day. The agents had run all morning. The number was a lie, and the bug behind it is one almost every cost tracker ships with.

Short version: when a provider's billing data has not arrived yet, a naive cost tracker records $0 for that period. For AI agents that run unattended, this hides the exact spending you built the tracker to catch. The fix is to model missing data as a distinct "unknown" state, never as zero, so a day you cannot measure reads as unmeasured instead of free.

Why a $0 day is the dangerous one

I run a fleet of scheduled agents. They digest articles, review drafts, sweep a queue overnight. Real model calls, real dollars. I built a daily spend ledger to answer one question every morning: what did yesterday cost, and am I about to blow the budget?

The first version summed whatever cost data it had and printed a total. Most mornings it printed a small number. Some mornings it printed $0.

The $0 mornings were not free mornings. They were mornings where the provider billing data had not reported yet. Usage lags. Some providers only give you a CSV export you pull later. So at 07:00 when the ledger compiles, the cost of the run that finished at 05:30 often is not available.

The ledger had no way to say "I don't know yet." It only knew how to add. No data plus no data equals zero. So it reported zero, looked green, and moved on.

The failure hides exactly what you were watching for

Here is why this is worse than a normal rounding error. Agents run while you sleep. A retry loop, a runaway tool call, a prompt that balloons context: these spend money at 3am with nobody watching. That unattended spend is the whole reason a budget tracker exists.

Billing lag and runaway spend show up at the same time. The surprise charge arrives late from the provider, which means the day it happened is precisely the day your ledger had no data for. A tracker that reads missing data as $0 fails in the one situation you built it for. It tells you everything is fine on the days you most need a warning.

Model three states, not one number

The fix is small, and it is a data-modeling fix, not a math fix. A cost period has three states, not one:

State Meaning Ledger shows
known provider data is in the real number
partial some sources reported, others pending the partial sum, flagged
unknown no data has arrived yet "unmeasured", not $0

A day with no billing data is unknown. The report says so in plain words. It does not get to pose as a cheap day. When the provider export lands, the day flips to known and the real cost backfills in.

This sounds obvious written down. It is the same null-versus-zero bug that has burned every database schema since forever. Zero is a measurement. Missing is the absence of one. Collapsing them throws away the single most important fact: whether you actually know.

What this looks like in practice

My ledger now writes one of those three states per source per day. If an export has not been pulled, that line says unknown, and the daily total carries an "incomplete" marker until every source reports. I would rather see "we cannot confirm yesterday's spend" than a confident, wrong $0.

The rule I wrote down for every agent that touches the ledger: missing provider billing data is not zero. Mark it unknown until a real export or API confirms the number.

That one line stops the green-dashboard trap. A system that defaults to zero when it is blind will always look healthy in the moment right before the bill teaches you otherwise.

Stop the spend, do not just measure it

The ledger tells you what a run cost after the fact. It does not stop a run from spending the money in the first place. For that you want a hard cap on the agent itself.

That is what I built AgentGuard for: a budget, token, and rate limiter you wrap around an agent so a runaway run stops at a ceiling instead of grinding until the invoice surprises you. It does not care whether your billing data has arrived. It counts spend as it happens and pulls the plug at the number you set. Free to install: pip install agentguard47.

What does your cost tracker show on a day the billing data is late: a real unknown, or a comforting $0?