New Relic

Real-time performance insights into your software, infrastructure & customer experience

Integrate the New Relic API with the Formatting API

Setup the New Relic API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate New Relic and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Alert from New Relic API
New Relic + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Deployment from New Relic API
New Relic + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Alert from New Relic API
New Relic + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Deployment from New Relic API
New Relic + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Alert from New Relic API
New Relic + Formatting
 
Try it
New Alert from the New Relic API

Emit new event when a new alert is created.

 
Try it
New Deployment from the New Relic API

Emit new event when a new deployment is created.

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
New Deployment with the New Relic API

Create a new deployment mark. See the docs here

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of New Relic

The New Relic API offers powerful capabilities for monitoring, alerting, and analyzing the performance of your web applications and infrastructure. By using the API within Pipedream, you can automate and orchestrate a vast array of operations that revolve around your application's health and data insights. This can range from triggering workflows based on New Relic alerts, to syncing performance data with other tools, or even automating responses to specific incidents.

Connect New Relic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})