Try   HackMD

Frontend Monitoring with Sentry

Overview

What is Front-End Monitoring

Simply put, front-end monitoring is the set of processes and tools used to track the performance of a website or app.

Front-end monitoring primarily focuses on the parts that the end user sees. These include issues such as:

  • Slow rendering
  • Inconsistent or unresponsive user experience
  • Network requests/API errors
  • Framework-specific issues

Importance of Front-End Monitoring

As websites are becoming more powerful and complex, the maintenance of its performance becomes increasingly difficult.

Front-end performance is a part of user experience. The perception of a business’ quality is often what the user first sees and experiences through its website. Any inconsistencies, downtime or errors on the client can lead to a loss of trust and credibility of a website. Therefore, front-end monitoring is an essential part in developing strong and robust websites and apps.

Getting Started with Sentry for React

Fortunately, there are currently some powerful tools such as Sentry to track, record and monitor front-end performance. It is an open-source error tracing tool that supports various languages and frameworks such as Java, PHP, Ruby, React, Rust, Unity, etc.

In this tutorial, let’s set up and start monitoring a React app with Sentry.

Step 0: Set up a Project

Create react app

npx create-react-app my-app
cd my-app
npm start

If you've previously installed create-react-app globally via npm install -g create-react-app, we recommend you uninstall the package using npm uninstall -g create-react-app or yarn global remove create-react-app to ensure that npx always uses the latest version.

Step 1: Set up a Sentry Project

Create a free Sentry account at sentry.io. After creating an account, click the Create project button.

Now, select React as the platform of our project and enter a project name. Click Create Project to finish setting up a new Sentry project.

Step 2: Install Sentry SDK

In a React app, we can integrate Sentry by installing its SDK with the following command:

npm install @sentry/react @sentry/tracing

Import the installed packages in your React’s app index.js file like so:

import * as Sentry from "@sentry/react"; import { Integrations } from "@sentry/tracing";

Step 3: Configure Sentry in React app

In order for Sentry to connect to our React app, we need to configure our SDK with our client key, also known as the Sentry DSN (Data Source Name) value.

To get our client key, simply navigate to Settings > Projects > {Your Project Name}, as shown in the screenshot below.

Then, click on Client Keys (DSN) and copy the DSN value.

Back in your App’s index.js file, add the Sentry.init() method below the import statements to connect the app to your Sentry project. Your index.js file should look something like:

import React from "react"; import ReactDOM from "react-dom"; import * as Sentry from "@sentry/react"; import { BrowserTracing } from "@sentry/tracing"; import App from "./App"; //Add these lines Sentry.init({ dsn: "Your DSN here", //paste copied DSN value here integrations: [new BrowserTracing()], tracesSampleRate: 1.0, //lower the value in production }); ReactDOM.render(<App />, document.getElementById("root"));

About SampleRate

While testing, it is okay to keep the tracesSampleRate as 1.0. This means that every action performed in the browser will be sent as a transaction to Sentry.

In production, this value should be lowered to collect a uniform sample data size without reaching Sentry’s transaction quota. Alternatively, to collect sample data dynamically, tracesSampler can be used to filter these transactions.

Step 4: Test Integration

Once we’ve configured our app, we may test whether our integration is successful with a simple button:

return <button onClick={methodDoesNotExist}>Bad Button</button>;

If we run our app, we would get the following error:

Now, let’s check our Sentry dashboard to see if the error has been properly traced. As seen in the image below, the ReferenceError is there.

Step 5: Capture Custom Errors

Besides capturing errors from React, Sentry can capture errors that are specified within the app too.

For example, in React app, we add some function. First is ButtonError.

function ButtonError() { throw "Ini Error"; }

And then, we simply add a try-catch statement when calling this function. We need to use Sentry.captureException() so it will be captured as a transaction and sent to Sentry.

function TestError() { try { ButtonError(); } catch (e) { Sentry.captureException(e); } }

Don't forget to import the package to use Sentry in our App.js file:

import * as Sentry from "@sentry/react";

Now, if we click button Expected.

In our Sentry Dashboard, under Issues, we can see the custom error we have captured.

Enable Performance Monitoring

In addition to error tracking, we can enable performance monitoring in our Sentry dashboard by wrapping Sentry.withProfiler() in our App component in its export statement.

export default Sentry.withProfiler(App);

Navigate to the Performance tab to monitor and measure important metrics such as the FCP (First Contentful Paint), latency or downtime of any API requests, etc.

Session Replay

OpenReplay is an open-source, session replay suite that lets you see what users do on your web app, helping you troubleshoot issues faster. OpenReplay is self-hosted for full control over your data.

Just add some configuration to capture session.

Sentry.init({
  dsn: "YOUR DSN",
  replaysSessionSampleRate: 0.1,
  // If the entire session is not sampled, use the below sample rate to sample
  // sessions when an error occurs.
  replaysOnErrorSampleRate: 1.0,
  integrations: [new Sentry.Replay()],
});

Customer Feedback

Sentry also support to bring pop-up feedback when error occur. Add some configuration on initiate Sentry.

Sentry.init({ dsn: "YOUR DSN", beforeSend(event, hint) { // Check if it is an exception, and if so, show the report dialog if (event.exception) { Sentry.showReportDialog({ eventId: event.event_id }); } return event; }, });

When the error occur. Let's click the Expected button again.

If user submit the feedback, we can see it on User Feedbacks

Conclusion

Without a doubt, front-end monitoring has gradually become prevalent in web development practices today. Powerful tools such as Sentry can provide useful insights and error management to enrich the user experience.

What’s even more powerful is the fact that OpenReplay integrates with Sentry, which allows for replayed activities to be sent for faster and easier debugging. To learn more about how to integrate OpenReplay with Sentry, please visit this link.

Thank you for reading. I hope this article has been helpful in getting you started with front-end monitoring and Sentry.