---
title: Instrumentation for browser monitoring
source: https://docs.newrelic.com/docs/browser/new-relic-browser/page-load-timing-resources/instrumentation-browser-monitoring
---

For standard [page load timing](https://docs.newrelic.com/docs/browser/new-relic-browser/page-load-timing/page-load-timing-process), sometimes referred to as real user monitoring (RUM), we measure the overall time to load the entire webpage. Additional monitoring after page load provides details on in-page AJAX calls, JavaScript errors, and other events and interactions.

Our browser monitoring can leverage the New Relic agent to dynamically inject JavaScript into pages as they are built, in order to collect more detailed backend timing information. Browser can also monitor apps with [single-page application (SPA) architectures](https://docs.newrelic.com/docs/browser/single-page-app-monitoring/get-started/add-apps-single-page-app-monitoring).

## Instrumentation to collect browser data [#instrumentation]

To collect data, browser monitoring uses JavaScript elements pasted or injected into your webpages, typically as part of the HEAD of the page, containing configuration details and essential browser environment instrumentation. Once the page finishes loading, an additional script is downloaded from a CDN server. This additional script processes the collected data and reports it back to New Relic via **bam.nr-data.net** so that you can see the data in your New Relic account.

The script elements can be injected automatically or via the [agent API](https://docs.newrelic.com/docs/browser/new-relic-browser/installation-configuration/browser-settings-ui-options-browser-monitoring#agent-instrumentation) by an APM agent installed in the backend application, or they can be [inserted manually via copy/paste](https://docs.newrelic.com/docs/browser/new-relic-browser/installation-configuration/adding-apps-new-relic-browser#copy-paste-app). Both API calls and the copy/paste method allow you to control when and where the script elements are inserted.

We use these methods to collect the page load timing information:

| **Method**                                               | **Collecting page load timing information**                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| -------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Browsers **with** Navigation Timing Specification API    | For browsers that implement the [Navigation Timing Specification](http://www.w3.org/TR/navigation-timing/ "Link opens in a new window") API, page load timing information is read from the browser and reported to New Relic by the browser agent. The appropriate values simply are read from the webpage's performance timing object to capture the timing information. - **Navigation start**: `navigationStart` - **First byte**: `responseStart` - **DOM ready**: `DOMContentLoadedEventEnd` - **Page ready**: `loadEventEnd` |
| Browsers **without** Navigation Timing Specification API | For browsers that do not implement the Navigation Timing Specification API, we rely on the [NREUM cookie](https://docs.newrelic.com/docs/browser/new-relic-browser/miscellaneous/new-relic-cookies#nreum) and the browser agent to collect timing information. For browser agent version 1220 and higher, usage of session cookies has been deprecated, so this information is only relevant if you're using browser agent version 1216 and lower.                                                                                 |
| Additional instrumentation                               | Browser also uses: - Instrumentation of the `XMLHttpRequest` object to collect [AJAX timing data](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-pro-features/ajax-dashboard-identifying-time-consuming-calls). - Instrumentation of JavaScript functions to collect uncaught [JavaScript errors](https://docs.newrelic.com/docs/errors-inbox/browser-tab/).                                                                                                                                                     |
| Resource Timing API                                      | For browsers that implement the [Resource Timing API](http://www.w3.org/TR/resource-timing/), the browser agent reads and reports [session trace](https://docs.newrelic.com/docs/browser/new-relic-browser/browser-pro-features/session-traces-exploring-webpages-life-cycle) details.                                                                                                                                                                                                                                             |
| Single page app (SPA) monitoring                         | For [SPA monitoring](https://docs.newrelic.com/docs/browser/new-relic-browser/getting-started/compatibility-requirements-browser-monitoring#spa), we require the [Navigation Timing Specification](http://www.w3.org/TR/navigation-timing/) API and the `addEventListener` API.                                                                                                                                                                                                                                                    |

## JavaScript placement requirements [#javascript-placement]

Injecting the JavaScript inline in the HEAD is an unusual requirement for a JavaScript library, and different from how third-party scripts are typically included. We require this so that browser provides accurate information without impacting page load performance.

The injected browser JavaScript elements wrap many of the browser's built in APIs to record information about JavaScript errors or callback timings. The unusual placement of the code element is necessary for the following reasons:

-   The inline HEAD placement ensures the instrumentation code is loaded before all other scripts so that wrapping will occur when other libraries are registered.
-   Inline code placement also eliminates the network round trips caused by externally referenced scripts.

## Data transmission [#transmission]

For both https **and** http webpages, we transmit data via https. This summarizes when the data is transmitted to and from the webpage.

> #### ⚠️ IMPORTANT
>
> New Relic requires support of the SHA256 hash function, which some older operating systems do not support. If an end user lacks SHA256, the browser agent will not connect to New Relic and data will not be sent.

| **Data transmission**        | **Frequency**                                                                                                                                                   |
| ---------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Fetch the agent script       | Once following page load via https                                                                                                                              |
| Send page load timing data   | Once following page load via https                                                                                                                              |
| All other browser event data | See [Browser agent harvests](https://docs.newrelic.com/docs/browser/new-relic-browser/performance-quality/browser-monitoring-performance-impact#agent-harvests) |
