checkId: check.notify.webhook.connectivity plugin: stellaops.doctor.notify severity: warn tags: [notify, webhook, connectivity, network, air-gap]
Webhook Connectivity
This Stella Ops Doctor diagnostic proves that Doctor can actually reach the configured generic webhook endpoint, not just that the URL is well-formed. It performs a live network probe and is therefore skipped for external targets in sealed/air-gapped deployments; configuration is validated separately by check.notify.webhook.configured.
What It Checks
Verifies that the configured generic webhook endpoint is reachable. The check:
- Sends a HEAD request to the webhook URL (falls back to OPTIONS if HEAD is unsupported) with a 10-second timeout.
- Any response with HTTP status < 500 is considered reachable (even 401/403, which indicate the endpoint exists but requires authentication).
- Warns on HTTP 5xx responses (server-side errors).
- Fails on connection timeout or HTTP request exceptions.
The check only runs when Notify:Channels:Webhook:Url (or Endpoint) is set and is a valid absolute URL.
Air-Gap Behavior
When the deployment is sealed by AirGap policy, or STELLAOPS_DOCTOR_OFFLINE_PROFILE=true forces Doctor offline mode, external webhook URLs return Skip with airGapSealed=true. Loopback, link-local, RFC1918, and unique-local IPv6 endpoints are still probed so sealed deployments can validate internal receivers. check.notify.webhook.configured still runs because it only validates local configuration.
For sealed deployments, point webhooks at an internal collector, SIEM relay, or queue bridge that is reachable inside the sealed network.
Why It Matters
A configured but unreachable webhook endpoint means third-party integrations silently stop receiving notifications. Events that should trigger PagerDuty alerts, SIEM ingestion, or custom dashboard updates will be lost.
Common Causes
- Endpoint server not responding
- Network connectivity issue or firewall blocking connection
- DNS resolution failure
- TLS/SSL certificate problem on the endpoint
- Webhook endpoint service is down
How to Fix
Docker Compose
docker exec <notify-container> curl -v --max-time 10 https://your-endpoint/webhook
docker exec <notify-container> nslookup your-endpoint
Bare Metal / systemd
curl -I https://your-endpoint/webhook
nslookup your-endpoint
nc -zv your-endpoint 443
Kubernetes / Helm
kubectl exec -it <notify-pod> -- curl -v https://your-endpoint/webhook
Check that egress NetworkPolicies allow traffic to the webhook destination.
Verification
stella doctor run --check check.notify.webhook.connectivity
Related Checks
check.notify.webhook.configured— verifies webhook URL is set and validcheck.notify.queue.health— verifies the notification delivery queue is healthy
