updated sentry.io

This commit is contained in:
Steven Hugg 2023-05-06 11:30:28 -05:00
parent 13656092c5
commit 0f011ee856
3 changed files with 14 additions and 22 deletions

View File

@ -586,26 +586,18 @@ $( ".dropdown-submenu" ).click(function(event) {
</script>
<!-- Sentry error reporting -->
<script
src="https://browser.sentry-cdn.com/6.4.1/bundle.min.js"
integrity="sha384-THoc7rflwZFKTdZNgv6jLFFDn299Uv3t1SW5B4yGLvLiCRTYP9ys6vXZcMl95TQF"
crossorigin="anonymous"
></script>
<script src='https://js.sentry-cdn.com/1fdd10e76a524c6e8d1e0a47f215fb28.min.js' crossorigin="anonymous"></script>
<script>
if (window.Sentry) Sentry.init({
dsn: 'https://bf329df3d1b34afa9f5b5e8ecd80ad11@o320878.ingest.sentry.io/1813925',
beforeBreadcrumb(breadcrumb, hint) {
if (breadcrumb.category === 'xhr' && typeof breadcrumb.data.url === 'string') {
if (breadcrumb.data.url.startsWith('http')) return null; // discard external scripts
}
return breadcrumb;
},
beforeSend(event, hint) {
const error = hint.originalException;
if (error && error.hasOwnProperty('$loc')) return null; // ignore EmuHalt
return event;
},
});
if (window.Sentry) Sentry.onLoad(function() {
Sentry.init({
sampleRate: window.location.host.endsWith('8bitworkshop.com') ? 0.5 : 0.05,
beforeSend(event, hint) {
const error = hint.originalException;
if (error && error.hasOwnProperty('$loc')) return null; // ignore EmuHalt
return event;
},
});
});
</script>
</body>

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "8bitworkshop",
"version": "3.10.0",
"version": "3.10.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "8bitworkshop",
"version": "3.10.0",
"version": "3.10.2",
"license": "GPL-3.0",
"dependencies": {
"@types/chroma-js": "^2.1.3",

View File

@ -1,6 +1,6 @@
{
"name": "8bitworkshop",
"version": "3.10.1",
"version": "3.10.2",
"author": "Steven Hugg",
"category": "Development",
"description": "8bitworkshop.com retro programming IDE",