Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Does anyone serious do this?

That’s an honest question, from a pretty experienced SRE.



In a world of unicorns and rainbows, absolutely. In the real world, it's as you probably already know: it's not that easy in a complex enough system.

Quick counter-example for GP: what if the 500 spike is due to a spike in malformed requests from a single (maybe malicious) user?


A malformed request should not lead to a 500, they should be handled and validated.


Well, in the real world it might. It should trigger a bug creation and a fix to the code, but not an incident. Now all of a sudden to decide this you need more complex and/or specific queries in your monitoring system (or a good ML-based alert system), so complexity is already going up.


Query input validation is nearly a solved problem. If you don't I would argue this is an incident if in this case 500's are returned.


You need to validate your inputs and return 4xx


Yeah and you also shall not write bugs in your code. Real world has bugs, even trivial ones.


If your service is returning 5xx, that is the the definition of a server error, of course that is degraded service. Instead we have pointless dashboards that are green an hour after everything is broken.

Returning 4xx on a client error isn't hard and is usually handled largely by your framework of choice.

Your argument is a strawman


> Returning 4xx on a client error isn't hard and is usually handled largely by your framework of choice.

> Your argument is a strawman

That's....super not true. Malformed requests with gibberish (or, more likely, hacker/pentest- generated) headers will cause e.g. Django to return 5xx easily.

That's just the example I'm familiar with, but cursory searching indicates reports of similar failures emitted by core framework or standard middleware code for Rails, Next.js, and Spring.


If input validation is not present in your framework of choice then the framework clearly has problems.

If you do not validate your inputs properly I am not sure what you are doing when you have a user facing applications of this size. Validating inputs is the lowest hanging fruit for preventing hacking threats.


Usually handled by the framework, you may have to write some code, I'd expect my saas provider to write code so that I know whether their service is available or not.


True, however it also doesn’t impact other users and doesn’t justify reporting an incident on the status page.





Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: