TL;DR: I have a Golang application that, using gin-gonics package, renders a very simple HTML . Once launched in local, accessing to http://localhost:8080/login (the URL is an example), it will show the html page, with its divs, buttons, etc. The html content is retrieved from a “.tpl” file. Probl…
Tag: sentry
How to globally ignore errors with sentry v5 to reduce noise
With the deprecated client Raven you could ignore troublesome errors : The only way I found with the new client is with the before-send hook : https://docs.sentry.io/error-reporting/configuration/filtering/?platform=browser#before-send I searched all over the docs but didn’t find a global way to ignore …