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

推荐订阅源

L
LangChain Blog
有赞技术团队
有赞技术团队
博客园_首页
IT之家
IT之家
爱范儿
爱范儿
量子位
小众软件
小众软件
Jina AI
Jina AI
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
The Cloudflare Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
雷峰网
雷峰网
V
Visual Studio Blog
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题

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
When Monitoring Becomes “Wrong”: The Limits of Watching O...
Nicholas Bro · 2026-05-01 · via DEV Community

Monitoring systems like Zabbix are often introduced with a clear promise: visibility, control, and early warning. In theory, if something starts to fail, you should see it before users notice. In practice, however, monitoring can quietly shift from being a tool for understanding systems to something that merely confirms they are still technically “alive.” This is where it starts to go wrong.

A common pattern in many environments is to reduce monitoring down to a small set of indicators, often because of time constraints or lack of clarity about what actually matters. Ping checks and basic disk usage are typical examples. They are easy to set up, easy to understand, and they produce clean green or red states in a dashboard. A host is either reachable or it is not. A disk is either above a threshold or below it. On the surface, this looks like responsible system oversight.

The problem is that these signals say very little about whether a system is actually healthy.

A server can respond to ping perfectly while the application running on it is completely broken. Services can be degraded, queues can be backing up, authentication can be failing, and yet from a monitoring perspective everything appears fine. Ping only confirms network reachability, not usability. It is the equivalent of checking whether a building’s front door can open, without ever looking inside to see if anything is on fire.

Disk usage has a similar limitation. Knowing that a disk is 70 percent full does not tell you whether performance is degrading, whether logs are spiraling out of control, or whether a sudden spike is about to cause a critical outage. More importantly, it does not reflect the actual user experience or business impact. A system can have “healthy” disk levels and still be functionally unusable due to database locks, slow queries, or application-level failures.

The deeper issue is not the choice of metrics themselves, but the illusion of completeness they create. When monitoring is reduced to a handful of system-level checks, it becomes very easy to assume that “green” means “healthy.” This shifts attention away from what monitoring is supposed to achieve: understanding system behavior in a meaningful, contextual way.

Zabbix, like many monitoring tools, is not the problem. It is capable of deep observability if it is used that way. The issue lies in how it is often configured to reflect infrastructure states rather than service states. Infrastructure tells you what is happening at the machine level. Services tell you what is happening for users. The gap between those two is where incidents hide.

A more mature approach to monitoring focuses less on whether individual components are responding and more on whether the system as a whole is delivering its intended outcome. That means looking at request success rates instead of just server availability, latency instead of just CPU load, and error rates instead of just disk space. It means treating infrastructure metrics as supporting evidence rather than the main story.

When monitoring is limited to ping and disk, it becomes reactive and shallow. It can tell you that something has already failed, but rarely why it is about to fail or how it affects real usage. Over time, teams begin to trust dashboards that are technically correct but operationally misleading.

Good monitoring should introduce doubt, not false certainty. It should make it harder to assume everything is fine when it is not. And it should reflect the system as users experience it, not just as machines report it.

In that sense, monitoring does not become “wrong” because it is inaccurate. It becomes wrong when it is too narrow to tell the truth that actually matters.