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

推荐订阅源

博客园 - 叶小钗
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
量子位
N
Netflix TechBlog - Medium
博客园 - 聂微东
博客园 - Franky
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
腾讯CDC

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 Replaced My Monitoring Dashboard With a Factory Warning...
Kusnaware · 2026-04-28 · via DEV Community

Kusnaware

I replaced my monitoring dashboard with a factory warning light.

Not metaphorically. Literally.

It's a Patlite LA6-POE — the kind of stacked warning light you see on Japanese factory floors that flashes red when the line stops. Five segments, one PoE cable, ~30 cm tall.

Mine doesn't warn. It shows.

Patlite LA6-POE — 4 segments lit at ~80 Mbps

The Inversion

Warning lights are designed to stay dark until something is wrong, then scream.

So I inverted it.

I wanted a light that stays always on, showing current bandwidth as a stack. The more layers lit, the more the network is active.

When 1 segment is lit, things are quiet.

When all 5 are lit and the top one flashes, someone is pushing a lot of traffic.

I barely open the dashboard anymore. The corner of the room tells me what I need to know.

The Build

  • Hardware: Patlite LA6-POE, one PoE switch port (power + data in a single cable)
  • Software: ~200 lines of Python on the monitoring host
  • Protocol: Patlite's obscure PNS binary protocol over TCP/10000. Reverse-engineered from the manufacturer PDFs. One round-trip is ~11 ms.

Data path:

PRTG (sFlow/SNMP from edge router)
    ↓ XML API polled every 5 seconds
    ↓ Python daemon + hysteresis logic
    ↓ PNS command over TCP
    ↓ Patlite LA6-POE

Enter fullscreen mode Exit fullscreen mode

Colors (fixed by hardware):

Bottom → Blue → Green → Yellow → Pink → Red (top)

The PRTG Trap

PRTG's XML for traffic sensors contains <lastvalue_raw> twice per channel:

  • First: cumulative bytes since sensor start
  • Second: current rate in bytes/second
# WRONG — you will see 8 million Mbps and question reality
rate = channel.find('lastvalue_raw').text

# RIGHT
raw_values = channel.findall('lastvalue_raw')
rate_bps = float(raw_values[1].text)

Enter fullscreen mode Exit fullscreen mode

I lost half a day.

This kind of bug is the worst — it doesn't crash, it just lies.

Thresholds with Hysteresis

I didn't design this for precision. I designed it for perception.

Naive thresholds make the light flicker like a broken Christmas tree. Hysteresis (separate UP/DOWN thresholds with ~10% gap) fixes it.

Level UP (Mbps) DOWN (Mbps) Segments Flash Buzzer
0 < 18 none
1 ≥ 20 < 27 1
2 ≥ 30 < 45 2
3 ≥ 50 < 72 3
4 ≥ 80 < 90 4
5 ≥ 100 < 135 5 ON
6 ≥ 150 < 135 5 ON 0.6s chirp

Result

This device solves zero tickets.

Sends zero notifications.

Improves no SLAs.

But I open the dashboard far less — and I notice problems earlier.

It does nothing useful, and everything I wanted.

It turned a factory warning light — originally designed to scream until somebody makes the screaming stop — into a device I actually want to glance at.

And that, in 2026, is more than enough.


(Six months ago, I solved a Cloudflare Wrangler problem with X11 forwarding instead of API tokens. Apparently this is my brand now: solving modern problems with historically inappropriate tools. This is the second time.)

If people are interested, I can share the exact setup and code.