Airbrake collects errors generated by other applications, and aggregates the results for review.
Go to siteWith the Airbrake API, you can build integrations that send data to Airbrake from your application. This can include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airbrake: {
type: "app",
app: "airbrake",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airbrake.io/api/v4/projects`,
params: {
key: `${this.airbrake.$auth.api_key}`,
},
})
},
})
Airbrake uses API keys for authentication. When you connect your Airbrake account, Pipedream securely stores the keys so you can easily authenticate to Airbrake APIs in both code and no-code steps.