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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Vercel News
Vercel News
F
Fortinet All Blogs
月光博客
月光博客
G
Google Developers Blog
博客园 - Franky
GbyAI
GbyAI
The Cloudflare Blog
I
InfoQ
雷峰网
雷峰网
WordPress大学
WordPress大学
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
小众软件
小众软件
腾讯CDC
B
Blog
量子位
V
V2EX
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News

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
Your Agent Just Handled That SEV2. Now What?
Niketa Sharm · 2026-05-07 · via DEV Community

The outage isn't the hard part. What's hard is the minute after the alert fires. Who's leading? Which Slack channel? What do we tell support? The fix is usually quick. The coordination is what kills you.

What agents actually do today

Teams are starting to route coordination work to agents. Engineer gets a Datadog alert, the agent checks who's on call, acknowledges, pulls recent deploys, pages the right person, logs everything. Engineer never leaves the editor.

The agent didn't fix anything. It removed the 20 minutes of friction before anyone starts debugging.

One engineer told me about their first agent-handled SEV2:

"I woke up to a full picture. Agent had pulled the deploy from 20 minutes ago, logged the spike, paged me. I fixed it in ten minutes instead of spending thirty figuring out what was happening."

Deciding what to hand off

Before the next incident, you need to answer this: what can the agent do without asking?

Some things are obvious. Acknowledging incidents, looking up who's on call, logging to the timeline, gathering context from deploys and logs, paging with full context. Let the agent do those.

Some things should stay with humans. Rollback decisions, customer comms, postmortem conclusions, declaring "we're resolved." These need judgment that agents don't have yet.

Then there's the gray zone. Escalation timing and severity classification. For escalation, pick a number and write it down. For severity, let agents triage but have humans confirm anything customer-facing.

When the agent is better than your process

One team told me the agent didn't improve their incidents. It exposed how broken the process already was. Nobody remembers ten steps at 2 AM. The process was asking humans to do machine work, and the agent made that visible.

Fewer tools, not more

More tools means more ambiguity. Seventy tools means the agent picks between list_incidents, get_incidents, search_incidents, and query_incidents. Four tools, same thing, different names. Now the agent is guessing.

Narrower surfaces make agents more dependable. We kept Runframe's MCP server to sixteen tools around incident workflows. If it doesn't help run an incident, it's out.

What I'd do

Start with SEV3s. Low severity, cheap mistakes, good place to watch how the agent behaves. Don't let agents near SEV0 until you've seen them work on dozens of lower-severity incidents first.

Write down delegation boundaries. Not runbooks that say "do X then Y," but guardrails: never do X without human approval, escalate after Y minutes. Test those before you need them.

And pay attention when the agent does something unexpected. That's it telling you what you forgot to define.


This is the short version. Full post on runframe.io/blog/your-agent-just-handled-that-sev2

We built Runframe around these ideas. If you're thinking about agent-driven incident management, the MCP server is open source.