Tallwatch
Back to blog
2 min read
Status pagesEngineering

Why your status page shouldn't live on the same servers as your app

If the product is down and status.yourdomain.com is too, you have lost the one URL customers use to decide whether to wait or panic.

NK

Nabin Khair

Founder

Why your status page shouldn't live on the same servers as your app

Teams love shipping /status inside the main application. It is one deploy, one domain, one cert. It is also a trap: when the app's load balancers melt, the status route melts with them. Customers refresh a 502 and assume the worst — because you gave them nowhere else to look.

Same fate, same outage

Shared failure domain means:

  • Same Kubernetes cluster
  • Same origin IP space
  • Same database the status app needs to render
  • Same deploy pipeline that just broke production

Any of those can take the explanation offline with the product.

What "separate" usually means

  • A hosted status product on someone else's infrastructure (this is what most small teams should do).
  • Or a static page on a different cloud account / Pages / S3+CDN setup you do not touch in the same deploy.
  • DNS and TLS that do not depend on your app's runtime.

Custom domains are fine — the hostname can be yours. The servers answering it should not be the ones on fire.

Monitor the messenger

Put an external check on the status URL. If status goes down, that is its own incident — smaller blast radius, but still worth knowing before customers tell you.

The awkward corollary

Your status page will sometimes be up while the app is down. That is success. It feels weird the first time. It is the point.

For whether you need a page at all, see do you need a status page for a small SaaS. For honesty once it exists, keep the data tied to real monitors — not a manual green switch on the same box that just died.

Related

Keep reading

False alerts and status pages.

Incident timelines customers can follow (without a novel)

Incident timelines customers can follow (without a novel)

A good public timeline is a sequence of dated facts. Not a blog post, not a void: enough for someone refreshing on their phone.

NKNabin Khair
How many status page components is too many?

How many status page components is too many?

Twenty microservices on a status page confuse customers and guarantee permanent yellow. Name what they buy, then stop.

NKNabin Khair
What to say on a status page during an outage (and what not to)

What to say on a status page during an outage (and what not to)

Customers do not need your root cause analysis in the first hour. They need honesty, timing, and a next update — without corporate fog.

NKNabin Khair