-
Deployment
Add real health and readiness checks
Give your host and monitors an honest signal for 'am I actually up and able to serve traffic'.
Free Prompt
What This Does / How This Helps
This gives you two honest signals: /health for 'the process is alive' and /ready for 'I can actually serve users right now'. The platform uses the first to restart broken instances and the second to stop routing traffic to instances whose database or cache just went down. The common failure is a single /health endpoint that returns 200 no matter what. It makes the dashboard green while users get 500s, and outages take hours longer to notice because your own monitoring is lying to you. Splitting the two and doing a real dependency check on /ready costs nothing and stops that class of blind spot cold.
Want to skip doing this by hand?
Fortivibe audits your app for all of the areas these prompts cover (and more).