DevHelm runs monitor checks from distributed probe regions. Multi-region checks reduce false positives by requiring failures from multiple locations before opening incidents.Documentation Index
Fetch the complete documentation index at: https://docs.devhelm.io/llms.txt
Use this file to discover all available pages before exploring further.
Available regions
| Region | Location | Code |
|---|---|---|
| US East | New York, USA | us-east |
| US West | San Francisco, USA | us-west |
| EU West | London, UK | eu-west |
| AP South | Singapore | ap-south |
Additional regions are added based on demand. Run
devhelm monitors create --help to see the latest available regions.Configuring regions
Specify one or more regions when creating a monitor:Multi-region strategy
Why use multiple regions
A single-region monitor can trigger false incidents when:- The probe region has a temporary network issue
- A cloud provider has a localized outage
- Routing between the probe region and your service degrades
How confirmation works
The incident policy’sconfirmation section controls multi-region behavior:
| Field | Description | Default |
|---|---|---|
minRegionsFailing | How many regions must be failing before an incident is confirmed | 1 |
maxWaitSeconds | How long to wait after the first region fails for other regions to confirm | max(60, frequency × 2) |
us-east fails but eu-west and ap-south are healthy, no incident opens.
Per-region vs any-region scope
Trigger rules have ascope that controls how failures are counted:
| Scope | Behavior |
|---|---|
per_region | Each region maintains its own failure count. A region must hit the count independently. |
any_region | Failures from any region count toward the same counter. |
per_region with minRegionsFailing: 2 — this ensures each confirming region has independently detected the failure.
Region selection guidelines
| Scenario | Recommended regions |
|---|---|
| Global SaaS application | All available regions |
| US-focused service | us-east + us-west (primary) + eu-west (confirmation) |
| European service | eu-west (primary) + us-east (confirmation) |
| Asia-Pacific service | ap-south (primary) + us-west or eu-west (confirmation) |
| Internal/staging monitors | Single region is fine |
Next steps
Multi-region guide
Patterns for reducing false positives.
Incident policies
Trigger rules and confirmation in detail.