newrelic.addToTrace(JavaScript object $custom_object)
Requirements
Agent version nr-593 or higher.
Description
Custom events within browser session traces can provide context for other user actions, errors, and default events within the trace. This event will appear in the browser session trace details.
- If a session trace currently is in progress, this adds an object with a user-defined name, start time, and other optional fields.
- If you make this call and a session trace is not already in progress, this will not cause Browser to take a trace.
Parameters
Parameter | Description |
---|---|
JavaScript object |
Required. Supply a JavaScript object with these required and optional name/value pairs:
If you are sending the same event object to New Relic One as a |
Example(s)
var obj = { // REQUIRED name: 'Event Name', start: 1417044274239, // Time in ms since epoch // OPTIONAL end: 1417044274252, // Time in ms since epoch. Defaults to same as start resulting in trace object with a duration of zero. origin: 'Origin of event', // Defaults to empty string type: 'What type of event was this' // Defaults to empty string }