Syntax
newrelic.setCustomAttribute(name: string, value: string|number|boolean|null[, persist: boolean])Adds a user-defined custom attribute name and value to subsequent events on the page.
Requirements
Browser Lite, Pro, or Pro+SPA agent (v593 or higher)
- For
persistparameter ornullvalue support, agent version 1.230.0 or higher is required. - For
booleanvalue support, agent version 1.245.0 or higher is required.
- For
If you're using npm to install the browser agent, you must enable at least one feature when instantiating the
BrowserAgentclass. For example, add the following in thefeaturesarray:import { Metrics } from '@newrelic/browser-agent/features/metrics'const options = {info: { ... },loader_config: { ... },init: { ... },features: [Metrics]}
For more information, see the NPM browser installation documentation.
Description
Sets a custom attribute for your agent session. Once an attribute is set, the New Relic platform records it with all supported events until the page is reloaded or the attribute is manually unset.
The following Browser events are supported:
Event name | Notes |
|---|---|
| |
| Attributes set using the SPA |
| |
| To view or log errors for a custom attribute via API, use the browser API |
| Custom attributes supplied to the |
| |
| Make this call before the window load event fires (when that data is transmitted) in order for the attributes to be included in the |
| |
|
With the persist flag, the attribute can also be in stored in the browser, so that subsequent page visits of the same origin within a session span retain it on events. Do note that this functionality may fluctuate depending on end-user browser privacy settings. If this function is called with a value = null, the attribute will be deleted from both the current page's events and the storage, regardless of the persist flag.
중요
Be aware that persisted attributes have precedence over info.jsAttributes keys of the same name! For example, a persisted attribute someName set on somedomain.com/pageA will override any someName that is statically set on somedomain.com/pageB's info block, assuming they share the same (session) storage.
Parameters
Parameter | Description |
|---|---|
string | Required. Name of the attribute. Appears as column in the Avoid using reserved NRQL words when you name the attribute/value. |
string OR integer OR boolean OR null | Required. Value of the attribute. Appears as the value in the named attribute column in the Passing a Avoid using reserved NRQL words when you name the attribute/value. |
boolean | Optional. If set to Defaults to |
Examples
Get JavaScript/jQuery for HTML elements
This example uses JavaScript/jQuery to get the values of the following HTML elements on a Drupal-generated page:
<link rel="shortlink" href="/node/1111" /><h1>Using NRQL</h1>
New Relic reports them as custom attributes. This is useful to query PageView and PageAction events.
var node_id = jQuery("link[rel='shortlink']").attr("href");var node_title = jQuery('h1').text();
if (typeof newrelic == 'object') { newrelic.setCustomAttribute('nodeId', node_id); newrelic.setCustomAttribute('title', node_title);}