Skip to main content

New Relic Connector

New Relic Easily manage metrics, logs, and events

Connections

API Key

Authenticate requests to New Relic using an API key.

InputCommentsDefault
API KeyProvide the API key from the developer console.

Actions

Raw Request

Send raw HTTP request to New Relic

InputCommentsDefault
Connection
Base URLhttps://api.newrelic.com/v2
URLInput the path only (/labels.json), The base URL is already included (https://api.newrelic.com/v2). For example, to connect to https://api.newrelic.com/v2/labels.json, only /labels.json is entered in this field.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Debug RequestEnabling this flag will log out the current request.false
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false

Send Detailed Logs

Use the Log API to send a detailed log using a custom request body to New Relic

InputCommentsDefault
MessageProvide a JSON object containing the message of logs you want to send.
{
"timestamp": 1562767499238,
"message": "{"service-name": "my-service", "user": {"id": 123, "name": "alice"}}",
"service-name": "my-service",
"user": {
"id": 123,
"name": "alice"
}
}
Connection

Send Event Data

Use the Event API to send custom event data to New Relic

InputCommentsDefault
Event TypeCan be a combination of alphanumeric characters, underscores, and colons
Additional AttributesProvide any key value pairs to pass with your request body.
Account IdProvide the unique identifier of your New Relic Insights account.
Connection

Send Logs

Use the Log API to send log data to New Relic

InputCommentsDefault
MessageProvide a JSON string containing the message of logs you want to send.
TimestampProvide a valid UNIX timestamp to be passed alongside the logs.
Connection

Send Metric Data

Use the Metric API to send custom metrics to the New Relic

InputCommentsDefault
Metric NameProvide the name of the metric you would like to report.
Metric TypeProvide a string value for the type of metric you would like to report. In order to correctly chose this value refer to the list of types here: https://docs.newrelic.com/docs/data-apis/understand-data/metric-data/metric-data-type/
Metric ValueProvide a value to report.
AttributesA map of key value pairs associated with this specific metric. Values can be strings, JSON numbers, or booleans. Keys are case-sensitive and must be less than 255 characters.
TimestampProvide a valid UNIX timestamp to be passed alongside the logs.
Connection