Wiki

What Is Website Monitoring?

Updated 2026-04-05 · Published 2026-04-01

Direct answer

Website monitoring is automated checking that a site responds correctly from outside your infrastructure—typically over HTTP/HTTPS—on a schedule. A probe requests your URL (and may validate status codes, response time, or page content), records the result, and triggers alerts when checks fail or breach thresholds.

Key points

  • External perspective: Checks run from third-party networks, so they reflect what users see through DNS, TLS, and routing—not only what looks healthy inside your LAN.
  • Signals: Common outputs include uptime percentage, incident timelines, response times, and SSL or redirect behavior.
  • Scope: Can be as simple as “200 OK on /” or as detailed as keyword checks, multi-step flows, and regional probes.

How it fits operations

Teams use website monitoring to catch outages before customers do, validate releases, and support SLAs. It complements logging and APM: those tools explain application behavior; monitoring proves availability and reachability from the public internet.

Limitations

Monitoring proves reachability and correctness of what you configure—it does not replace code profiling, deep security audits, or user-session replay. False positives can occur when probes are blocked, rate-limited, or when DNS differs by region.

Frequently asked questions

How often should checks run?

Interval depends on risk: production homepages often use 1–5 minute intervals; lower-traffic properties may use longer intervals to reduce noise and cost.

Does monitoring fix downtime?

No—it detects and alerts. Remediation still requires your runbooks, hosting changes, or deployments.

What is a good first check?

Start with HTTPS GET to your primary URL, assert 2xx/3xx as appropriate, and alert after consecutive failures from more than one location if possible.