HTTP & TCP monitors
Poll endpoints and TCP ports on a configurable interval. Track uptime, latency, and degraded response times.
TLS & DNS monitors
Watch SSL certificates for expiration and DNS records for unexpected changes.
Cron job monitors
Heartbeat-based monitoring for scheduled tasks. Your job pings Overwatch — no inbound probing required.
Alert channels
Route status-change alerts to Slack, Discord, Teams, email, or a webhook.
Monitor types at a glance
| Type | What it checks | Possible statuses |
|---|---|---|
HTTP | HTTP/HTTPS endpoint reachability and response code | up, down, degraded |
TCP | TCP port connectivity and latency | up, down, degraded |
TLS | SSL/TLS certificate validity and days to expiry | active, expiring_soon, expired, no_cert |
DNS | DNS record presence and value | present, missing, changed |
SCHEDULED | Whether a cron job or task has checked in recently | ok, failed, havent_heard |
Creating a monitor
Send aPOST request to /api/v1/monitors with a name, type, and a config object. The fields inside config vary by monitor type — see each type’s page for details.
201:
Monitor response fields
Unique monitor identifier.
Display name you assigned when creating the monitor.
One of
HTTP, TCP, TLS, DNS, or SCHEDULED.Type-specific configuration object. Fields vary by monitor type.
Current status. Possible values depend on the monitor type. Starts as
unknown until the first check completes.Whether the monitor is actively running checks. Defaults to
true.ISO 8601 timestamp of the last check-in. Only populated for
SCHEDULED monitors.Status reported on the last check-in (
ok or fail). Only populated for SCHEDULED monitors.ISO 8601 timestamp of when the monitor was created.
ISO 8601 timestamp of the last update to the monitor record.
Plan limits
The number of monitors you can create depends on your plan.| Plan | Monitor limit | Minimum check interval |
|---|---|---|
| Starter | 10 | 5 minutes (300 s) |
| Pro | 200 | 1 minute (60 s) |
| Enterprise | Custom | 10 seconds |
The default check interval for new monitors is 5 minutes. Pro plans support intervals as low as 1 minute. If you need 10-second intervals, contact us about Enterprise.
422 response with "upgrade": true. Upgrade your plan from Settings → Plan to add more monitors.
Listing monitors
Retrieve all monitors for your organization with aGET request:
type query parameter:
range parameter. Accepted values are 1d, 7d, 30d, and 90d (default).