with Grafana and Render?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
grafana: {
type: "app",
app: "grafana",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.grafana.$auth.domain}/api/org/`,
headers: {
Authorization: `Bearer ${this.grafana.$auth.service_account_token}`,
"accept": `application/json`,
},
})
},
})
The Render API enables developers to automate deployment workflows, manage services, and interact with Render's infrastructure programmatically. Through Pipedream, you can tap into this API to create powerful serverless workflows that seamlessly integrate with your DevOps pipeline. By connecting Render with other apps available on Pipedream, you can orchestrate complex automation scenarios, monitoring, and notifications, ensuring that your deployment process is as efficient and responsive as possible.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
render: {
type: "app",
app: "render",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.render.com/v1/owners`,
headers: {
Authorization: `Bearer ${this.render.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})