Socket
Socket
Sign inDemoInstall

@bharathvaj/fullstory-bugsnag

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bharathvaj/fullstory-bugsnag

Fullstory Bugsnag Integration


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

fullstory-bugsnag

The FullStory-Bugsnag integration seamlessly integrates the FullStorys and Bugsnag platforms. When you look at a browser error in Bugsnag, you will see a link to the FullStory session replay at that exact moment in time. When you are watching a FullStory replay and your user experiences an error, you will see a custom error with the basic error details.

Table of content

  • Pre-Requisites
  • Installation
  • Setup
  • Roadmap

Pre-Requisites

For the FullStory-Bugsnag integration to work, you must have the FullStory browser SDK package and the Bugsnag browser SDK package.

Installation

To install the stable version:

with npm:

npm install --save @bharathvaj/fullstory-bugsnag

with yarn:

yarn add @bharathvaj/fullstory-bugsnag

Setup

Code Changes

To set up the integration, both FullStory and Bugsnag need to be initialized. Please add the following code:

import Bugsnag from '@bugsnag/js';
import * as FullStory from '@fullstory/browser';
import BugsnagFullStory from '@bharathvaj/fullstory-bugsnag';

FullStory.init({ orgId: '__FULLSTORY_ORG_ID__' });

Bugsnag.start({
  apiKey: '__YOUR_API_KEY__',
  plugins: [new BugsnagFullStory(options)],
  // ...
});

Replace __YOUR_API_KEY__ with the API found in Project Settings.

You also need to replace __FULLSTORY_ORG_ID__ with the value of _fs_org in the FullStory recording snippet on your FullStory settings page.

Options

You can also customize the error event name in FullStory by

// ...
Bugsnag.start({
  apiKey: '__YOUR_API_KEY__',
  plugins: [
    new BugsnagFullStory({
      fsEventName: 'Custom Error Name',
    }),
  ],
  // ...
});

//...

Roadmap

[ ] - Support Bugsnag Error link in FullStory Custom Event.

[ ] - Add Unit test cases

[ ] - Register this integration as plugin to bugsnap core library

How it works

In Bugssnag, you should see additional tab called FULLSTORY for the error event which will have urlAtTime.

BugSnag

In FullStory, you should see an event called BugSnag Error on the right sidebar.

FullStory

Keywords

FAQs

Package last updated on 10 Apr 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc