Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sentry.md « fe_guide « development « doc - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af4a006c7ea87c18a65ca0ab73d37e17e9e7062e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
stage: none
group: unassigned
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
---

# Sentry

As part of the [Frontend Observability Working Group](https://google.com) we're looking to provide documentation on how to use Sentry effectively.
If left unchecked, Sentry can get noisy and become unreliable.
This page aims to help guide us toward more sensible Sentry usage.

## Which errors we should report to Sentry explicitly and which should be only shown to users (e.g. as alerts)

If we send all errors to Sentry, it gets very noisy, very quickly.
We want to filter out the errors that we either don't care about, or have no control over.
For example, if a user fills out a form incorrectly, this is not something we want to send to Sentry.
If that form fails because it's hitting a dead endpoint, this is an error we want Sentry to know about.

## How to catch errors correctly so Sentry can display them reliably

TBD

## How to catch special cases you want to track (like we did with the pipeline graph)

TBD

## How to navigate Sentry and find errors

TBD

## How to debug Sentry errors effectively

TBD