Diagnostics

How to tell whether an outage is regional

8 min read · Published Aug 9, 2026
Contents · 7 sections
  1. Why regional outages happen at all
  2. The honest limitation of any single check
  3. Evidence that actually distinguishes regional from global
  4. What the shape of the failure suggests
  5. What to do once you know
  6. What it looks like in the numbers
  7. Capture it before it resolves

Most large services do not fail everywhere at once. They fail in one region, one edge location, or for the fraction of users whose DNS happens to point at a broken cluster. Distinguishing that from a global outage changes what you should do about it, and it is harder than it sounds.

Why regional outages happen at all

A modern service is not one machine. Requests are steered to whichever copy is nearest by three mechanisms, each of which can fail independently for a subset of users:

Add regional cloud dependencies on top. When one cloud region degrades, every service anchored there degrades with it, which is the pattern in our cloud cascade field guide.

The honest limitation of any single check

We should be direct about this, because it is the thing most outage tools quietly gloss over. Our four probe methods differ by HTTP version, TLS strictness, request verb and User-Agent. They do not differ by geography. They all leave the same infrastructure.

That is genuinely useful for a different question, which is whether a site is behaving inconsistently by request shape. But it means a single check from us proves the site is reachable from where we are. Any tool claiming to prove a global outage from one vantage point is overstating what it measured, and we would rather say "reachable from our probes" than imply more.

This is also why we mark a down verdict as unconfirmed unless independent vantage points agree. An outage claim is a statement about other people's experience, and it should require evidence about other people.

Evidence that actually distinguishes regional from global

  1. Your own second path. Mobile data uses a different network and often different resolvers. If the site works there and not on your Wi-Fi, no regional outage is involved at all.
  2. A different DNS resolver. Query 1.1.1.1 and 8.8.8.8 and compare. Different addresses for the same name means geo-aware DNS is steering, and one of those clusters may be the broken one.
  3. A VPN exit in another country. The most direct test available to an individual. Works elsewhere, fails at home: regional. See the VPN guide for the ways this test misleads.
  4. The vendor's own status page, read sceptically. They lag, and they under-report partial failures. Anatomy of a website outage covers why.
  5. Independent probes. Our live outages page reports what we measured and when, with the method breakdown, so you can judge the evidence rather than take a verdict.

What the shape of the failure suggests

What to do once you know

If it is regional, a VPN or a different resolver is often a genuine workaround, and the report worth filing names your region and resolver. If it is global, there is nothing to work around and the only useful action is to watch the incident. Either way, note the time and the failure mode: an incident report with a timestamp and a method breakdown is worth ten that say "it is down".

What it looks like in the numbers

Regional failures have a shape that global ones do not, and you can see it without special tooling.

Use traceroute example.com on macOS and Linux, tracert on Windows. Compare on Wi-Fi and on mobile data: the hop where the two paths diverge is where your ISP hands off, and a failure before that point is squarely theirs.

Capture it before it resolves

Regional incidents are frequently over within the hour and are almost never acknowledged afterwards, which makes them impossible to argue about later unless you wrote something down. Worth capturing while it is happening:

  1. The address the hostname resolves to for you, and from a public resolver.
  2. A timestamp with a timezone.
  3. Your region and ISP.
  4. The failure mode, and whether a VPN exit elsewhere changes it.

Those four fields are what turn "it was broken this morning" into a report an operator can act on, and they take under a minute to collect.

Share 𝕏 Twitter LinkedIn
Keep reading

← All notes & guides