New Relic

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

Integrate the New Relic API with the Schedule API

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

New Deployment with New Relic API on Custom Interval from Schedule API
Schedule + New Relic
 
Try it
New Deployment with New Relic API on Daily schedule from Schedule API
Schedule + New Relic
 
Try it
New Deployment with New Relic API on Monthly Schedule from Schedule API
Schedule + New Relic
 
Try it
New Deployment with New Relic API on Weekly schedule from Schedule API
Schedule + New Relic
 
Try it
New Alert from the New Relic API

Emit new event when a new alert is created.

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Deployment from the New Relic API

Emit new event when a new deployment is created.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Deployment with the New Relic API

Create a new deployment mark. See the docs here

 
Try it

Overview of New Relic

New Relic's API enables you to do the following:

  • Automate your New Relic account and data
  • Retrieve data from New Relic for use in other tools
  • Build New Relic-powered tools and applications

Here are some examples of what you can build using the New Relic API:

  • A custom dashboard to display the data that matters most to you
  • An alerting system that notifies you when your app is experiencing problems
  • A tool to help you track your New Relic bill and usage
  • An application that integrates with New Relic to provide additional data or
    functionality

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}`,
      },
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.