Real-time performance insights into your software, infrastructure & customer experience
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
New Relic's API enables you to do the following:
Here are some examples of what you can build using the New Relic API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
new_relic: {
type: "app",
app: "new_relic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newrelic.com/v2/users.json`,
headers: {
"X-Api-Key": `${this.new_relic.$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
},
})