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

推荐订阅源

V
Visual Studio Blog
I
InfoQ
H
Help Net Security
GbyAI
GbyAI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
Y
Y Combinator Blog
L
LangChain Blog
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
博客园 - Franky
D
Docker
Jina AI
Jina AI
罗磊的独立博客

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
I Built a Monitor for AI Agents Because They Kept Dying S...
rtsubber · 2026-05-18 · via DEV Community

rtsubber

I Built a Monitor for AI Agents Because They Kept Dying Silently

Your API goes down at 2am. Your users get errors. Your revenue drips away. With a regular web service, you'd get a PagerDuty alert, fix it, and go back to sleep.

AI agents don't work that way.

When an agent's LLM call fails, it doesn't throw a 500. It hallucinates. When it gets rate-limited, it doesn't crash. It just returns garbage. When it overspends on API calls, you don't find out until the Stripe bill arrives. Agents fail silently — and by the time you notice, the damage is done.

Agent Monitor fixes that.

What is Agent Monitor?

Agent Monitor is an uptime and cost tracking API built specifically for AI agents. Three things it does that general-purpose monitors don't:

1. Heartbeat Monitoring with Response Time

Your agent pings the monitor every 5 minutes. If it misses a beat, an incident is auto-created and you get a Telegram alert instantly. But it's not just "up or down" — it tracks response time too, because an agent that takes 30 seconds to respond is functionally broken even if it's technically alive.

curl -X POST https://monitor.brandbooststudio.co/v1/heartbeat \
  -H "X-API-Key: am_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "mon_my_agent_001",
    "status": "alive",
    "response_time_ms": 120
  }'

Enter fullscreen mode Exit fullscreen mode

Miss 3 heartbeats? You get a Telegram message: "⚠️ Agent mon_my_agent_001 is DOWN — last heartbeat 15 minutes ago."

2. API Spend Tracking

Every API call your agent makes costs money. GPT-4 is $0.03/1K tokens. Claude is $0.015/1K tokens. Ollama is free but burns GPU time. When you're running multiple agents 24/7, those costs add up fast.

Agent Monitor lets you log every spend event:

curl -X POST https://monitor.brandbooststudio.co/v1/spend \
  -H "X-API-Key: am_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "mon_my_agent_001",
    "api_name": "openai-gpt4",
    "cost": 0.03,
    "tokens_used": 1500,
    "requests": 1
  }'

Enter fullscreen mode Exit fullscreen mode

You get a dashboard that shows:

  • Total spend per agent
  • Spend per API service (OpenAI, Anthropic, Ollama, etc.)
  • Spend trends over time
  • Alerts when spend exceeds your monthly limit

3. Incident Detection & Instant Alerts

When an agent goes down, Agent Monitor auto-creates an incident record:

{
  "incident_id": "inc_abc123",
  "agent_id": "mon_my_agent_001",
  "incident_type": "heartbeat_missed",
  "status": "open",
  "started_at": "2026-05-17T02:15:00Z",
  "resolved_at": null
}

Enter fullscreen mode Exit fullscreen mode

And you get a Telegram alert immediately. No PagerDuty integration needed. No Slack webhook setup. Just a Telegram message to your phone, because that's where you are at 3am.

The Dashboard API

One endpoint gives you everything:

curl https://monitor.brandbooststudio.co/v1/dashboard \
  -H "X-API-Key: am_your_key_here"

Enter fullscreen mode Exit fullscreen mode

{
  "total_agents": 3,
  "agents_up": 2,
  "agents_down": 1,
  "total_spend": 12.45,
  "spend_by_api": {
    "openai-gpt4": 8.20,
    "anthropic-claude": 3.15,
    "ollama-local": 1.10
  },
  "active_incidents": 1,
  "recent_heartbeats": [...],
  "recent_spend": [...]
}

Enter fullscreen mode Exit fullscreen mode

This is the endpoint your own dashboard UI calls. Or your cron job checks. Or your status page pulls from.

Why Not Just Use Datadog/UptimeRobot/Pingdom?

Good question. I tried them. Here's why they don't work for agents:

Datadog — Built for infrastructure, not agents. You'd need custom instrumentation for every agent. Costs scale with every metric. Overkill for "is my agent alive and how much is it spending?"

UptimeRobot/Pingdom — HTTP pings only. They can check if your agent's endpoint returns 200. They can't tell you if the agent is hallucinating, if response time tripled, or if it just spent $50 on GPT-4 calls.

Custom Prometheus/Grafana — Powerful but heavy. Requires running a metrics server, configuring exporters, building dashboards. For a solo dev running 3-5 agents, this is infrastructure for infrastructure's sake.

Agent Monitor is the simple version: heartbeat + spend + alerts. It does one thing well. You integrate it in 5 minutes with two curl calls.

The Tech Stack

  • FastAPI — Async Python, automatic OpenAPI docs
  • SQLite (WAL mode) — Zero-ops database, one file, easy backup
  • Telegram Bot API — Instant alerts to your phone
  • Tailscale Funnel — Secure public exposure, auto HTTPS
  • Stripe — Payment integration for Pro tier

All secrets from environment variables. No hardcoded defaults. The API is open source.

Part of the Agent Business Suite

Agent Monitor is the third piece of the Agent Business Suite:

  1. AgentSeek — Discover AI agents
  2. Local-Eye — Verify real-world data
  3. Agent Monitor — Track uptime and cost

All three are available as a bundle at $49/month with a single suite API key. One key, three APIs, full agent infrastructure.

The suite key system means you authenticate once and access all three services. Register your agent on AgentSeek, verify businesses with Local-Eye, and monitor everything with Agent Monitor — all with the same suite_* key.

Free Tier

Agent Monitor is free for up to 100 heartbeats and 1,000 spend events per month. That's enough to monitor 3-5 agents at 5-minute heartbeat intervals.

No credit card required. No time limit. Free means free.

Try It Now

  1. Get a free API key: POST /v1/keys
  2. Register your agent: POST /v1/register
  3. Send heartbeats: POST /v1/heartbeat
  4. Track spend: POST /v1/spend
  5. Check dashboard: GET /v1/dashboard

Five minutes. Two curl calls. Your agents are monitored.