Socket
Socket
Sign inDemoInstall

@airbnb/lunar-metrics

Package Overview
Dependencies
142
Maintainers
7
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @airbnb/lunar-metrics

Metrics handling for Lunar.


Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
7
Install size
3.77 MB
Created
Weekly downloads
 

Readme

Source

Lunar Metrics

Provides integrated NewRelic and Sentry insights and metrics logging.

This will also set the Google Analytics userId if ga is global and userID is passed to Metrics.initialize.

yarn add @airbnb/lunar-metrics

Setup

Initialize the metrics package with your Sentry key/project (optional) and the current user ID.

import Metrics from '@airbnb/lunar-metrics';

Metrics.initialize({
  context: { additionalParams: 'toLog' },
  ignoreErrors: ['APIError'],
  sentryKey: 'abcdef',
  sentryProject: 'project',
  userID: getUserID(),
});

This will automatically bootstrap NewRelic (if the global below exists) and Sentry (if the key/project are defined).

NewRelic

Rather than being configured in your application logic, NewRelic is configured in the DOM with a script block, usually within a index.html file. The script block can be found in your NewRelic project -> Application settings page, and looks something like the following.

<script type="text/javascript">
  window.NREUM || (NREUM = {}),
    (__nr_require = function(t, e, n) {
      /* CODE */
    });
  if (window.location.origin.indexOf('localhost') >= 0) {
    // development:
    NREUM.info = {
      beacon: 'bam.nr-data.net',
      errorBeacon: 'bam.nr-data.net',
      licenseKey: 'foobarbaz',
      applicationID: '12345678',
      sa: 1,
    };
  } else {
    // production:
    NREUM.info = {
      beacon: 'bam.nr-data.net',
      errorBeacon: 'bam.nr-data.net',
      licenseKey: 'foobarbaz',
      applicationID: '12345678',
      sa: 1,
    };
  }
</script>

If you'd like to support separate development and production projects, a localhost conditional like the above will work.

Usage

Logging Errors

To log an error to both NewRelic and Sentry, use captureError. This function accepts a string, Error, or Event instance. It optionally supports additional params for Sentry as the 2nd argument.

import captureError from '@airbnb/lunar-metrics/lib/utils/captureError';

captureError('Something is broken');

captureError(new Error('Something is really really broken!'), {
  level: 'error',
});

captureError(someDomEvent);

Capturing Breadcrumbs

If you'd like to capture a Sentry breadcrumb to trail along side errors, use captureBreadcrumb.

import captureBreadcrumb from '@airbnb/lunar-metrics/lib/utils/captureBreadcrumb';

captureBreadcrumb({
  message: 'Failed to login',
  category: 'auth',
  data: {
    username: 'foobar',
  },
});

FAQs

Last updated on 07 Apr 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc