Airbrake collects errors generated by other applications, and aggregates the results for review.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With 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}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})