Back to notes

Technical note

5 min read

Simple uptime checks for small sites

Useful uptime checks begin with the pages people actually open and the signals that explain visible failure.

A small set of public checks can catch broken pages, missing assets, and certificate problems without heavy tooling.
A small set of public checks can catch broken pages, missing assets, and certificate problems without heavy tooling.

Start small

  • Check the home page and one important path.
  • Confirm assets and certificate state.
  • Avoid noisy checks that nobody will trust.

Check what people see first

For a small site, the most useful uptime check is often the first public page. If that page is broken, visitors do not care that other internal checks are green.

Begin with the home page and one important inner path. Add more paths only when each one answers a real operational question.

Use checks that explain action

A good check should point to a next step. Status code, page title, certificate state, and missing assets are simple signals that tell a person where to look.

A check that fails often for harmless reasons becomes noise. It should be adjusted or removed before people learn to ignore it.

Review after every site change

Small public updates can still break paths. A simple uptime review after deployment is often enough: open the page, confirm assets, check mobile layout, and record the result.

This habit matters more than a large tool list.

First checks to use

  • Home page returns the expected status.
  • Important inner path loads the expected content.
  • Stylesheet, images, and favicon load successfully.
  • Certificate is valid and covers the active name.
  • Mobile layout has no obvious overflow.