• English日本語한국어
  • Log inStart now

Add custom attributes to synthetic monitoring data

New Relic's $util.insights is a set of tools to set and manipulate events reported from synthetic monitoring.

You can add custom data as custom attributes, with the prefix custom, to the SyntheticCheck event. These attributes are in addition to the event's default attributes.

Compatibility

This functionality is available for monitor versions 0.2.0 or later.

Functions

Function

Return value

$util.insights.set(key: string, value: ?)

Sets a key/value pair.

void

$util.insights.get(key: string)

Returns the value for the provided key.

object

$util.insights.getKeys()

Returns an array of keys currently set.

object

$util.insights.has(key: string)

Returns true if the key exists in the data.

boolean

$util.insights.unset(key: string)

Removes the key/value pair.

void

$util.insights.unsetAll()

Removes all custom data.

void

Example

The example obtains the latest incident from New Relic's RSS status feed and saves the details for this event.

var parseString = require('xml2js').parseString;
// Get the New Relic status RSS feed
$http.get('https://status.newrelic.com/history.rss', function(err, response, body) {
parseString(body, function(err, result){
// Parse the RSS, and get the latest incident
var latestIncident = result.rss.channel[0].item[0];
// Push the incident details to New Relic
$util.insights.set('Incident', latestIncident.title[0]);
$util.insights.set('Description', latestIncident.description[0]);
$util.insights.set('Date', latestIncident.pubDate[0]);
});
});

To view the incident data sent to New Relic in this example, use this query:

FROM SyntheticCheck SELECT latest(custom.Date), latest(custom.Incident), latest(custom.Description) WHERE monitorName = "Monitor Name Here"
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.