Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
166 lines (131 loc) · 5.54 KB

File metadata and controls

166 lines (131 loc) · 5.54 KB
title type shortDescription tags metaDescription redirects freshnessValidatedDate
wrapLogger
apiDoc
Wrap existing browser logging methods.
Browser
Browser monitoring
Browser agent and SPA API
Automatically capture data passing through your existing browser logging methods as log events.
never

Syntax [#wrap-syntax]

newrelic.wrapLogger(parent: Object, functionName: string, options?: Object<{ customAttributes?: Object, level?: 'debug|error|info|trace|warn'}>)

Automatically captures data passing through existing browser logging methods as log events.

Requirements [#wrap-requirements]

  • Browser Pro, or Pro+SPA agent (v1.261.0 or higher)

  • If you're using npm to install the browser agent and using a non-standard implementation, you must enable the logging feature when instantiating the BrowserAgent class. For example, add the following in thefeatures array:

    import { Logging } from '@newrelic/browser-agent/features/logging'
    
    const options = {
      info: { ... },
      loader_config: { ... },
      init: { ... },
      features: [
        Logging
      ]
    }

For more information, see the npm browser installation documentation.

Description [#wrap-description]

After you provide this method with a valid parent container and child function name, the browser agent will record a new log event every time the wrapped function is invoked. The first argument is passed to the invoked function as the log's message. See the Logs UI for more information about log events.

You can pass the optional configurations along with these captured logs using the options argument. Any custom attributes supplied to the API call in the options argument (options.customAttributes) are appended as top-level attributes on every log event created by this wrapper and take precedence over any global custom attributes by setCustomAttribute. Supply a level to the options argument (options.level) to control the level of captured log. By default, the log level is set to info.

Parameters [#wrap-parameters]

  <th>
    Description
  </th>
</tr>
Parameter
`parent`
    _Object_
  </td>

  <td>
    Required. An object which contains the target function to be wrapped.
  </td>
</tr>

<tr>
  <td>
    `functionName`

    _string_
  </td>

  <td>
    Required. The name of the target function to be wrapped. This function must exist in the `parent` object and match the type of "function".
  </td>
</tr>

<tr>
  <td>
    `options`

    _Object_
  </td>

  <td>
    Optional. An object used for supplying optional configurations for every log captured by the wrapper. `options.customAttributes` is an object of key:val pairs that assigns a top-level property and value to the created log for each attribute supplied. The enum `options.level` assigns a log level to the created log event.  The `level` must be one of: `debug | error | info | trace | warn`.  The log level defaults to `info` if not supplied.
  </td>
</tr>

Examples [#wrap-examples]

Capturing log items from the native console method(s) [#wrap-capture-log-items]

newrelic.wrapLogger(console, 'info')
// from this point forward, every time `console.info` is invoked, it will save a log event with:
// a message of --> <the first argument passed to console.info>
// a level of --> 'info'

Capturing log items from a custom logger [#wrap-capture-custom-logger]

const myLoggers = {
  logger: function(){...}
}
newrelic.wrapLogger(myLoggers, 'logger')
// from this point forward, every time `myLoggers.logger` is invoked, it will save a log event with:
// a message of --> <the first argument passed to myLoggers.logger>
// a level of --> 'info'

Capturing log items with a specified level [#wrap-specified-level]

const myLoggers = {
  logger: function(){...}
}
newrelic.wrapLogger(myLoggers, 'logger', {level: 'debug'})
// from this point forward, every time `myLoggers.logger` is invoked, it will save a log event with:
// a message of --> <the first argument passed to myLoggers.logger>
// a level of --> 'debug'

Capturing a log item with custom attributes [#wrap-custom-attributes]

const myLoggers = {
  logger: function(){...}
}
newrelic.wrapLogger(myLoggers, 'logger', {customAttributes: {myFavoriteApp: true}})
// from this point forward, every time `myLoggers.logger` is invoked, it will save a log event with:
// a message of --> <the first argument passed to myLoggers.logger>
// a level of --> 'info'
// an attribute of --> 'myFavoriteApp: true'

Wrap multiple loggers [#wrap-multiple-loggers]

const myLoggers = {
  myInfoLogger: function(){...},
  myDebugLogger: function(){...}
}
newrelic.wrapLogger(myLoggers, 'myInfoLogger', {level: 'info'})
newrelic.wrapLogger(myLoggers, 'myDebugLogger', {level: 'debug'})
// from this point forward, every time `myLoggers.myInfoLogger` is invoked, it will save a log event with:
// a message of --> <the first argument passed to myLoggers.myInfoLogger>
// a level of --> 'info'

// every time `myLoggers.myDebugLogger` is invoked, it will save a log event with:
// a message of --> <the first argument passed to myLoggers.myDebugLogger>
// a level of --> 'debug'