Package Information
Downloads: 237 weekly / 237 monthly
Latest Version: 0.1.0
Author: seamoooo
Documentation
n8n-nodes-newrelic
![]()
This is an n8n community node. It lets you use New Relic in your n8n workflows.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Usage
Development
Installation
Follow the installation guide in the n8n community nodes documentation to install this node.
If you want to install this node locally for development:
- Clone this repository.
- Run
npm installin then8n-nodes-newrelicdirectory. - Run
npm run buildto build the code. - Link the node to your n8n installation:
(Or usually for n8n local development, you just need tocd n8n-nodes-newrelic npm link cd /path/to/n8n/root npm link n8n-nodes-newrelicnpm linkinside the node folder and then start n8n, ensuring n8n looks for custom nodes in the globalnode_modulesor~/.n8n/custom).
Operations
Account
- Get Consumption: Retrieve usage data (e.g., GB consumed per metric type).
- Get Account Structure: Retrieve the parent-child account hierarchy.
Entity
- Search Catalog: Search the New Relic entity catalog (e.g., by domain, name, or tags).
- Get Relationships: Retrieve related entities (dependencies) for a specific entity.
- Get Tags: Retrieve tags assigned to a specific entity.
- Get Golden Metrics: Retrieve golden metrics for a specific entity.
User Management
- Get Authentication Domains: Retrieve the IDs and details of authentication domains in the organization.
- Create User: Create a new user in a specific authentication domain (Basic, Core, or Full). Note: Not recommended for domains using SCIM provisioning.
NRQL Execution
- Query: Execute a NRQL (New Relic Query Language) query via NerdGraph.
Trigger
- New Relic Trigger: Receive real-time alerts from New Relic via Webhook. Supports security verification using a Secret Token.

Credentials
To use this node, you need to set up credentials:
- User API Key: You need a User API Key (starts with
NRAK-).- Go to New Relic API keys documentation: User API Key.
- Region: Select your New Relic data region:
- US (United States)
- EU (Europe)
- New Relic Secret (for Trigger): Create a new credential and enter your Secret Token to verify webhook signatures.
Usage
Automating Incident Enrichment (Example)
- Add the New Relic Trigger node to receive webhook alerts.
- Add the New Relic node to your workflow.
- Select Entity as the Resource and Search Catalog or Get Relationships to gather context about the failing service.
- Chain this data to a Jira or Slack node to automate ticket creation with enriched context.
Execute NRQL
- Add the New Relic node to your workflow.
- Select NRQL as the Resource and Execute as the Operation.
- Enter your NRQL command in the NRQL field.
- Example:
SELECT count(*) FROM Transaction
- Example:
- Execute the node. The result will return the raw data from NerdGraph.
Development
- Install dependencies:
cd n8n-nodes-newrelic npm install - Build the code:
npm run build - Watch for changes (optional):
npm run build:watch