Skip to main content

UpDown

UpDown is a website monitoring and uptime tracking platform that continuously checks the availability, performance, and health of websites, web services, APIs, and online infrastructure. This integration enables users to query and analyze their configured monitoring checks and retrieve detailed performance metrics to ensure service reliability and identify downtime issues.

CategoryObservability
DirectionQuery source
Sign-inAPI Key
Query languagesSQLite
Tables4
Query templates8
Websiteupdown.io

Before you start​

Huntbase signs in to UpDown with API Key. Create the credential in UpDown first, then keep it to hand for the Connect step.

  1. Sign in to updown.io and open your settings at https://updown.io/settings/edit.
  2. Copy your read-only API key.

Permissions:

  • A read-only API key, which works only with GET endpoints.
Watch out for
  • A read-only key hides basic auth credentials in check URLs, so those values won't appear in results.

For the vendor's own instructions, see updown.io API documentation.

tip

Use a dedicated, read-only credential for Huntbase where the product allows it. Huntbase only needs to read.

Connect UpDown​

  1. Go to Connections and click New connection, or click New connection on the UpDown product page.
  2. On Product, pick UpDown and choose the Owner.
  3. On Details, give the connection a Name and, optionally, a Description.
  4. On Connect, fill in the settings and credentials described below.
  5. On Verify, review the summary and click Create & check.

For everything else on the setup page — saving a draft, I'll do this later, and what each check result means — see Connections.

Credentials​

The only Method is API Key. Enter a Credential label (for example Production), then fill in:

FieldRequiredNotes
API KeyYesSecret — not shown again after you save it.

Query it​

Once connected, UpDown can serve these languages in a query tab, and Scout can use it when you ask in Auto:

LanguageUse it for
SQLiteSQL over the 4 tables listed below, alongside every other connected source.

Example: SQLite​

List all checks — List all monitoring checks in the system to understand the health and performance of digital assets.

select
*
from
updown_check;

UpDown ships with 8 query templates. Find them in Library › Queries — see Query templates.

Tables​

UpDown adds 4 tables. Browse their columns from Schema in the query bar's ⋯ menu.

All 4 tables
TableContains
updown_checkChecks configured for the account.
updown_downtimeDowntime represents a downtime period for a check.
updown_metric_hourGet detailed metrics about a check. Statistic are aggregated per hour. For example all requests performed between 5:00 and 5:59 will be reported at 5:00 in this API. The time range needs to be at least one hour to get data.
updown_nodeList all updown.io monitoring nodes.

Next steps​