Telescope

HTTP

How Telescope checks HTTP endpoints, detects WAF blocking, and classifies results.

HTTP monitors make a real request to your URL, measure the response time, and classify the result as up, down, or degraded.

How a check works

  1. Telescope sends an HTTP request to your URL with the method and headers you configured.
  2. The response time is measured from request start to first byte.
  3. The status code is compared against your expected codes (default: 200–204, 301–303, 307–308).
  4. If the status code is unexpected, Telescope checks whether a WAF or firewall is blocking the request.
  5. The result is recorded and your monitor's status is updated.

Checks never hang — every request has a timeout (default 30 seconds, configurable per monitor). If the target doesn't respond in time, the check is marked as down.

Status classification

ConditionStatusWhat it means
Expected status code (e.g., 200)UpYour site is responding normally
WAF or firewall blocking detectedDegradedYour site is up, but blocking the checker
Unexpected status code (e.g., 500)DownYour site returned an error
Timeout, DNS failure, or network errorDownYour site is unreachable

WAF and firewall detection

Many sites use web application firewalls (Cloudflare, Sucuri, AWS WAF, etc.) that can block automated requests. When this happens, your site is actually up — it's just blocking Telescope's checker.

Instead of triggering a false down alert, Telescope detects WAF blocking and marks the monitor as degraded. This gives you visibility without the noise.

Telescope detects blocking from:

  • Cloudflare — challenge pages and bot mitigation
  • Sucuri — firewall blocks
  • Akamai — request transformation and blocks
  • AWS WAF — 403 blocks
  • Rate limiting — 429 responses from any provider
  • Generic blocking — keywords like "access denied" or "captcha" in the response body

If your monitor is showing as degraded due to WAF blocking, you need to allowlist Telescope's IP addresses in your firewall settings. See the WAF whitelisting guide for step-by-step instructions for Cloudflare, Sucuri, AWS WAF, Akamai, Wordfence, and other firewalls.

Configuration options

You can customize HTTP monitors with these settings:

SettingDefaultDescription
MethodGETHTTP method (GET, POST, PUT, etc.)
HeadersCustom request headers
BodyRequest body for POST/PUT requests
Expected status codes200–204, 301–303, 307–308Which status codes count as "up"
AuthenticationBasic auth or Bearer token
Follow redirectsYesWhether to follow HTTP redirects
Timeout30 secondsHow long to wait before marking as down

Authentication

Telescope supports two authentication methods for monitors that require login:

  • Basic auth — sends Authorization: Basic <base64> with your username and password.
  • Bearer token — sends Authorization: Bearer <token> with your API key or token.

Configure these in the monitor settings. Credentials are stored encrypted and never logged.

On this page