with SwarmNode and Freshping?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swarmnode: {
type: "app",
app: "swarmnode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.swarmnode.ai/v1/agents/`,
headers: {
Authorization: `Bearer ${this.swarmnode.$auth.api_key}`,
},
})
},
})
The Freshping API allows you to automate uptime and performance monitoring for your websites and web services. By integrating with Pipedream, you can harness this capability to create customized alerts, log incidents, and trigger actions based on the health of your monitored services. This opens up possibilities for proactive maintenance, real-time status updates, and seamless incident management by connecting to various apps and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
freshping: {
type: "app",
app: "freshping",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.freshping.io/api/v1/checks/`,
auth: {
username: `${this.freshping.$auth.api_key}`,
password: `${this.freshping.$auth.subdomain}`,
},
})
},
})