Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-rollbar

Gatsby plugin to add Rollbar error tracking to your site.

Learn more about Rollbar here.

Install

npm install --save gatsby-plugin-rollbar

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: "gatsby-plugin-rollbar",
    options: {
      accessToken: "YOUR_ROLLBAR_ACCESS_TOKEN",
      // For all configuration options, see https://docs.rollbar.com/docs/rollbarjs-configuration-reference
      captureUncaught: true,
      captureUnhandledRejections: true,
      payload: {
        environment: "production"
      }
    }
  }
];
© 2023 Gatsby, Inc.