• EnglishEspañol日本語한국어Português
  • Log inStart now

Synthetic monitoring best practices guide

With synthetic monitoring, you can monitor and test your apps and address issues before they affect your end users. Here are five tips so you can take advantage of its full power.

Choose your synthetic monitor

Synthetic monitors are virtual browsers that measure the performance of your website and capture aggregate numbers for load time, uptime, and average download size. You'll also have access to detailed statistics about downtime incidents and each page resource.

We have seven types of synthetic monitors to choose from, depending on what you want to monitor and how you'd like to do it. For example, a step monitor is a great way to create what essentially functions as a scripted browser without writing code. If you're looking for automated management of your synthetic monitors, our NerdGraph API lets you create, update, and delete your synthetic monitors through API calls.

Add your synthetic monitor

  1. To add a monitor, go to one.newrelic.com > All capabilities > Synthetic Monitoring.

    If you have an EU-based account, go to one.eu.newrelic.com.

  2. Click Create monitor.

  3. Select a monitor type, then fill in all required fields.

  4. You can add tags, change the period, or select a different runtime version. For ping and simple browser monitors, you can add a validation string. You can use the advanced options to enable substring monitoring for the following types of response validations:

    • Verify SSL (for ping and simple browser). This option verifies the validity of the SSL certificate chain. It can be duplicated by running the following syntax:
bash
$
openssl s_client -servername {YOUR_HOSTNAME} -connect {YOUR_HOSTNAME}:443 -CApath /etc/ssl/certs > /dev/null
  • Bypass HEAD request (for ping monitors). This option skips the default HEAD request and instead uses the GET verb with a ping check. GET requests will always happen if the HEAD request fails.
  • Redirect is Failure (for ping). If a redirect result occurs when Redirect is Failure is enabled, your synthetic monitors categorize it as a failure rather than following the redirect and checking the resulting URL.
  1. Select the locations from where you want your monitor to run. We recommend choosing at least three locations to avoid false positives. In other words, if at least one location returns a successful result then the endpoint must be up and triggering of an alert can be avoided.
  2. Depending on the monitor type, you'll be prompted to either Save monitor, Validate, or Write script.
  3. View your results as they're received in the summary page.

View the summary page for your synthetic monitors

On the summary page, you'll see information about the status of your synthetic monitor. If something created an active incident that triggered an alert, then click the critical alert link to open a new window.

Get an overview of your application's performance

To ensure that web services are in place, working as expected, and error-free, you'll want continuous access to the results of your application's performance. Synthetic monitoring gives this type of assurance by performing automated tests on your web application for each selected location. Your synthetic monitors will note downtime instances and collect the aggregated numbers, results, and detailed statistics for each page resource.

To quickly identify monitors that are failing, you can use the index of synthetic monitors page to see which monitors have open incidents, success rates over 24 hours, number of failing locations, the monitor period, and monitor type. When you click on a monitor, you'll be taken to the Summary page where you'll find information to assess where that particular monitor is failing, why it's failing, for example last error message, error response codes, duration by domain, and more. With this information, you'll have a deeper insight into your application's performance over time.

View your monitors in your list of entities

View individual monitor results

You can view the performance of your web apps as they're accessed from different parts of the globe. Your results page shows how everything from development to production affects user experience. You can sort what's listed to better identify problem areas or unusual results. Try filtering by location to compare monitor performance from different locations. To do this:

  1. Go to one.newrelic.com > All capabilities > Synthetic Monitoring.

  2. Click Monitor, then click Results.

    You can see up-to-the-minute views of the slowest page loads for each monitored location.

Understand the load-time impact of each resource

You can see how the different components of your site affect your overall load on the synthetics resources page. These components can be CSS, JavaScript, images, HTML, etc. You can drill into detailed metrics collected at run time, locate performance information for time spent by third-party resources, and identify HTTP response codes for each resource. To do this:

  1. Go to one.newrelic.com, then click Synthetic Monitoring.
  2. From the Monitors dropdown menu, select your monitor.
  3. Click Monitor, then click Resources.

Configure and develop a scripted browser or scripted API test

Using scripted browser monitors, you can easily build monitoring workflows with the Selenium JavaScript Webdriver. For example, you can navigate to a particular page, find an element on the page, check that expected text is found, and take a screenshot. To do this, you'll:

  1. Go to one.newrelic.com > All capabilities > Synthetic Monitoring.
  2. Click the Create monitor button.
  3. Choose the Scripted browser monitor type.
  4. Enter a name, select a runtime, and select a period for your monitor.
  5. Select the locations from where you want your monitor to run. For example, Mumbai, Seoul, Columbus, or Montreal.
  6. You are now ready to write your script. See this example script that tests performance of newrelic.com and checks that certain elements have loaded.
/**
* Script Name: Best Practices Example - Chrome 100+
* Author: New Relic
* Version: 1.0
* Purpose: A simple New Relic Synthetics scripted browser monitor to navigate to a page, find an element, and assert on expected text.
*/
// -------------------- DEPENDENCIES
const assert = require("assert")
// -------------------- CONFIGURATION
const PAGE_URL = "https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/scripting-monitors/synthetic-scripted-browser-reference-monitor-versions-chrome-100/"
const TEXT_TO_CHECK = "Synthetic scripted browser reference (Chrome 100 and higher)"
// Set timeouts for page load and element finding
await $webDriver.manage().setTimeouts({
pageLoad: 30000, // 30 seconds for page load timeout
implicit: 5000, // 5 seconds for element finding timeout
})
// -------------------- START OF SCRIPT
console.log("Starting simplified synthetics script")
// Navigate to the page
console.log("Navigating to: " + PAGE_URL)
await $webDriver.get(PAGE_URL)
// Find the element with the specified text
const By = $selenium.By
const textElement = By.className("css-v50zng")
console.log("Checking for presence of element with text: " + TEXT_TO_CHECK)
const element = await $webDriver.findElement(textElement)
const text = await element.getText()
// Assert the text is present
console.log("Found text: " + text)
assert.equal(text, TEXT_TO_CHECK, "Expected text not found on the page")
// Take a screenshot
console.log("Taking screenshot")
await $webDriver.takeScreenshot()
console.log("Script completed successfully")

Using scripted API monitors, you can easily build monitoring workflows with Node.js and the got module. For example, you can authenticate with an API and assert on response code.

  1. Go to one.newrelic.com > All capabilities > Synthetic Monitoring.
  2. Click the Create monitor button.
  3. Choose the Scripted API monitor type.
  4. Enter a name, select a runtime, and select a period for your monitor.
  5. Select the locations from where you want your monitor to run. For example, Mumbai, Seoul, Columbus, or Montreal.
  6. You are now ready to write your script. See this example script that makes an API request and processes the response.
/**
* Script Name: Best Practices Example - Node 16.10.0
* Author: New Relic
* Version: 1.0
* Purpose: A simple New Relic Synthetics scripted API monitor to make a GET request and assert on statusCode.
*/
const assert = require("assert")
// Get secure credentials
const applicationId = $secure.APP_ID
const apiKey = $secure.API_KEY
// The URL for the API endpoint to get information about a specific application
const URL = `https://api.newrelic.com/v2/applications/${applicationId}.json`
// Define headers, including the API key for authentication
const headers = {
"X-Api-Key": apiKey,
}
// Make a GET request
$http.get({ url: URL, headers: headers }, function (error, response, body) {
// If error handling is needed, check if an error occurred during the request
// if (error) {
// console.error("An error occurred:", error);
// Handle the error as needed, or rethrow to fail the monitor
// throw error;
// }
// Assert the response status code is 200
assert.equal(response.statusCode, 200, "Expected HTTP status code 200")
// Log the status code to the console
console.log("Request Status Code:", response.statusCode)
// If further processing of the response body is needed, it can be done here
// For example, parsing JSON response (if response is in JSON format)
// const jsonData =
// typeof body === "string"
// ? JSON.parse(body)
// : body
// Log the parsed JSON to the console
// console.log("Parsed JSON data:", jsonData)
// Check the application's health status
// const healthStatus = jsonData.application.health_status
// assert.equal(healthStatus, "green", "Expected the application's health status to be 'green'")
// If the assertion passes, the script will continue; otherwise, it will fail the monitor
})
Copyright © 2024 New Relic Inc.

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