Use the synthetics REST API to create and manage synthetic monitors of all types: ping, simple browser, scripted browser, and API test monitors. All synthetic monitoring data is available via the REST API.
To use the synthetics REST API, you must have a user role that allows that capability and a .
For an overview of all our available APIs, see Intro to APIs. If you haven't already, create your free New Relic account below to start monitoring your data today.
Important
You can now manage your synthetic monitors (including certificate check monitors, step monitors, and broken links monitors) with our NerdGraph API.
Features
The newest version of the synthetic monitoring API (v3) adds these features:
Synthetic monitoring API (v3)
Features
Options field for POST and PUT request
You can specify the options for SIMPLE and BROWSER type monitors, similar to the way these options are available in the UI.
PATCH request
You can update only the fields of a monitor you want to change, rather than having to specify the entire monitor entity in a PUT. You can also specify the OPTION, assuming you are using the appropriate type of monitor.
More detail with 400 Bad Request errors
As of v3, the synthetic monitoring API attempts to return as much information as possible when a validation failure occurs. This will help you figure out what might be wrong with the request. The API runs all validations and returns any failed validation messages, rather than failing on the first validation error as occurred in previous API versions.
This API can be used for all synthetic monitors. (Additional API methods for scripted browser and API test monitors are also available to update the script associated with those monitors.) All synthetic monitoring data is available via the API. API examples show curl commands.
For US-based accounts, use the following endpoint:
The synthetic monitoring REST API limits an account's rate of requests to three requests per second. Requests made in excess of this threshold will return a 429 response code.
To view a list of all the monitors in your New Relic account, send a GET request to $API_ENDPOINT/v3/monitors. For example:
A successful request will return a 200 OK response. The data returned will be a JSON object in the following format:
{
"monitors": [
{
"id": "2a1bc369-7654-489d-918e-f6g135h7i2jk",
"name": "monitor1",
"type": "BROWSER",
"frequency": 60,
"uri": "http://example.com",
"locations": [
"AWS_US_WEST_1"
],
"status": "DISABLED",
"slaThreshold": 7,
"options": {},
"modifiedAt": "2016-09-26T23:12:46.981+0000",
"createdAt": "2016-09-26T23:12:46.981+0000",
"userId": 0,
"apiVersion": "0.2.2"
}
],
"count": 1
}
Query arguments:
offset: The monitor count offset. Defaults to 0. For example, if you have 40 monitors and you use an offset value of 20, it will return monitors 21-40.
limit: The number of results per page, maximum 100. Defaults to 50.
You can include these in your curl command as follows:
A successful request will return a 201 Created response, with the URI of the newly-created monitor specified in the location header. Possible error codes include:
400 Bad Request: One or more of the monitor values is invalid, or the format of the request is invalid. For example: the frequency is out of bounds or one or more of the specified locations is invalid. (See the error message in the body of the response.)
402 Payment Required: Creating the monitor will increase your scheduled checks past your account's purchased check limit.
To update an existing monitor in New Relic, send a PUT request to $API_ENDPOINT/v3/monitors/$MONITOR_ID. In addition, for scripted monitors, follow the procedures to update the BASE64 encoded script.
All fields are required. However, the TYPE of the monitor cannot be changed.
PUT requests are intended to replace target entities, so all attributes required in the JSON payload when creating a new monitor are also required when updating an existing monitor.
A successful request will return a 204 No Content response, with an empty body. Possible error codes include:
400 Bad Request: One or more of the monitor values is invalid, or the format of the request is invalid. For example, the frequency is out of bounds or one or more of the specified locations is invalid. (See the error message in the body of the response.)
404 Not Found: The specified monitor does not exist.
To patch an existing monitor in New Relic, send a PATCH request to $API_ENDPOINT/v3/monitors/$MONITOR_ID.
PATCH requests are intended to update individual attributes of your synthetic monitors rather than updating the entire entity, so you may provide only the attributes you want to update.
A successful request will return a 204 No Content response, with an empty body. Possible error codes include:
400 Bad Request: One or more of the monitor values is invalid, or the format of the request is invalid. For example, the frequency is out of bounds, or one or more of the specified locations is invalid. (See the error message in the body of the response.)
404 Not Found: The specified monitor does not exist.
To delete an existing monitor in synthetic monitoring, send a DELETE request to $API_ENDPOINT/v3/monitors/$MONITOR_ID:
A successful request will return a 204 No Content response, with an empty body. An unsuccessful request will return the response 404 Not Found: The specified monitor does not exist.
To retrieve the list of valid locations in your synthetic monitors, use the following command:
curl -v \
-X GET -H "Api-Key:$API_KEY" $API_ENDPOINT/v1/locations
Script API for scripted browser and API test monitors
In addition to the general API, there are several API methods for the scripted browsers (SCRIPT_BROWSER) and API test browsers (SCRIPT_API). These examples show curl commands.
To view the script associated with a specific SCRIPT_BROWSER or SCRIPT_API in your account's synthetic monitors, send a GET request to $API_ENDPOINT/v3/monitors/$MONITOR_ID/script. For example:
To update the script associated with a specific SCRIPT_BROWSER or SCRIPT_API monitor, send a PUT request to $API_ENDPOINT/v3/monitors/$MONITOR_ID/script with a JSON payload that contains the scriptText (required).
A successful request will return a 204 No Content response with an empty body. Possible error codes include:
400 Bad Request: Invalid BASE64 encoded string for scriptText or hmac.
403 Forbidden: The specified monitor is not of the type SCRIPT_BROWSER or SCRIPT_API.
404 Not Found: The specified monitor does not exist.
When creating or updating monitors for private locations that have verified script execution turned on, you must use scriptLocations to set the password:
{
"scriptText": BASE64 encoded String,
"scriptLocations": [
{
"name": Location name,
"hmac" BASE64 encoded String of SHA256 HMAC for location
}
]
}
The password used to generate the HMAC string must match the password set for the private location. If you have multiple locations with Verified script execution enabled each location must have the HMAC calculated. When generating the HMAC string, use the SHA256 algorithm with the script and password.
Here's an example for the script:
var assert = require('assert');
assert.equal('1', '1');
This example uses password as the password for the scriptLocation:
You must remove the last newline character from both the script and the calculated HMAC value before encoding in BASE64.
Calculation steps:
Calculate the HMAC value from the script. One way is to use: cat script | openssl dgst -sha256 -hmac "password" > hmac
Remove the newline character if one was added by openssl.
Encode the HMAC in BASE64 without line breaks.
Scripted browser example
Here is an example of using New Relic's REST API and the bash script to create a scripted browser monitor.
The following example shows curl commands to create a scripted browser monitor.
At the top of the script, replace the variables with your specific values.
For the scriptfile variable, identify the filename for the script to be created. Here is a sample script that can be saved as sample_synth_script.js to use in the example:
assert.equal("http://www.iana.org/domains/example", link, "More information link did not match");
});
});
});
This example shows the bash script that will create the SCRIPTED_BROWSER monitor.
Tip
In some cases you may want to use -w 0, which will disable line wrapping: base64 -w 0 $scriptfile
#!/bin/bash
# API key from your account settings
API_KEY=''
# Other attributes found at https://docs.newrelic.com/docs/apis/synthetics-rest-api/monitor-examples/attributes-synthetics-rest-api#api-attributes
monitorName='Test API Script'
monitorType='SCRIPT_BROWSER'
frequency=1440
locations='"AWS_US_WEST_1", "AWS_US_EAST_1"'
slaThreshold=7.0
# Location of the file with your script
scriptfile=sample_synth_script.js
# Test that the script file exists (does not validate content)
if [ -e "$scriptfile" ]
then
script=$(cat "$scriptfile")
payload="{ \"name\" : \"$monitorName\", \"frequency\" : $frequency, \"locations\" : [ $locations ], \"status\" : \"ENABLED\", \"type\" : \"$monitorType\", \"slaThreshold\" : $slaThreshold, \"uri\":\"\"}"
echo "Creating monitor"
# Make curl call to API and parse response headers to get monitor UUID
shopt -s extglob # Required to trim whitespace; see below
while IFS=':' read key value; do
# trim whitespace in "value"
value=${value##+([[:space:]])}; value=${value%%+([[:space:]])}
case "$key" in
location) LOCATION="$value"
;;
HTTP*) read PROTO STATUS MSG <<< "$key{$value:+:$value}"
;;
esac
done < <(curl -sS -i -X POST -H "Api-Key:$API_KEY" -H 'Content-Type:application/json' https://synthetics.newrelic.com/synthetics/api/v3/monitors -d "$payload")
# Validate monitor creation & add script unless it failed
if [ $STATUS = 201 ]; then
echo "Monitor created, $LOCATION "
echo "Uploading script"
# base64 encode script
encoded=`echo "$script" | base64`
scriptPayload="{\"scriptText\":\"$encoded\"}"
curl -s -X PUT -H "Api-Key:$API_KEY" -H 'Content-Type:application/json' "$LOCATION/script" -d $scriptPayload
echo "Script uploaded"
else
echo "Monitor creation failed"
fi
else
echo "script file not found, not creating monitor"
fi