This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
New Down Alert (Instant) on Updown.io
Description:Emit new event when a website check reports as down. [See the documentation](https://updown.io/api#webhooks)
Version:0.0.1
Key:updown_io-new-down-alert-instant
import common from "../common/base.mjs";
import sampleEmit from "./test-event.mjs";
export default {
...common,
key: "updown_io-new-down-alert-instant",
name: "New Down Alert (Instant)",
description: "Emit new event when a website check reports as down. [See the documentation](https://updown.io/api#webhooks)",
version: "0.0.1",
type: "source",
dedupe: "unique",
methods: {
...common.methods,
getEventTypes() {
return [
"check.down",
];
},
},
sampleEmit,
};
This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
| Label | Prop | Type | Description |
|---|
| Updown.io | updown | app | This component uses the Updown.io app. |
| N/A | db | $.service.db | This component uses $.service.db to maintain state between executions. |
| N/A | http | $.interface.http | This component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component. |
Updown.io uses API keys for authentication. When you connect your Updown.io account, Pipedream securely stores the keys so you can easily authenticate to Updown.io APIs in both code and no-code steps.
To retrieve your API keys,
- Navigate to your Updown.io account and sign in
- Go to "Settings" > "API"
updown.io is a HTTP(S)/TCP/ICMP monitoring service which checks periodically the URL you want and reports back any anomaly, be it downtime, bad response, degraded performance or even broken SSL certificate.