Drop @sentry/node (Sentry support) - untested and unused

This commit is contained in:
Rory&
2025-09-29 21:28:06 +02:00
parent 3a0bded7f2
commit 0c3d8a792f
14 changed files with 3 additions and 210 deletions
-2
View File
@@ -35,7 +35,6 @@ import {
RegionConfiguration,
RegisterConfiguration,
SecurityConfiguration,
SentryConfiguration,
TemplateConfiguration,
UserConfiguration,
} from "../config";
@@ -56,7 +55,6 @@ export class ConfigValue {
kafka: KafkaConfiguration = new KafkaConfiguration();
templates: TemplateConfiguration = new TemplateConfiguration();
metrics: MetricsConfiguration = new MetricsConfiguration();
sentry: SentryConfiguration = new SentryConfiguration();
defaults: DefaultsConfiguration = new DefaultsConfiguration();
external: ExternalTokensConfiguration = new ExternalTokensConfiguration();
email: EmailConfiguration = new EmailConfiguration();
@@ -1,27 +0,0 @@
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2023 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { hostname } from "os";
export class SentryConfiguration {
enabled: boolean = false;
endpoint: string =
"https://05e8e3d005f34b7d97e920ae5870a5e5@sentry.thearcanebrony.net/6";
traceSampleRate: number = 1.0;
environment: string = hostname();
}
-1
View File
@@ -34,7 +34,6 @@ export * from "./RabbitMQConfiguration";
export * from "./RegionConfiguration";
export * from "./RegisterConfiguration";
export * from "./SecurityConfiguration";
export * from "./SentryConfiguration";
export * from "./subconfigurations";
export * from "./TemplateConfiguration";
export * from "./UsersConfiguration";
-130
View File
@@ -1,130 +0,0 @@
/*
Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
Copyright (C) 2023 Spacebar and Spacebar Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { yellow } from "picocolors";
import { Config } from "./Config";
import * as Integrations from "@sentry/node";
import express from "express";
// Work around for when bundle calls api/etc
let errorHandlersUsed = false;
export const Sentry = {
/** Call BEFORE registering your routes */
init: async (app?: express.Application) => {
const { enabled, endpoint, traceSampleRate, environment } =
Config.get().sentry;
if (!enabled) return;
if (Integrations.getClient()) return; // we've already initialised sentry
console.log("[Sentry] Enabling sentry...");
if (traceSampleRate >= 0.8) {
console.log(
`[Sentry] ${yellow(
"Your sentry trace sampling rate is >= 80%. For large loads, this may degrade performance.",
)}`,
);
}
const integrations = [
Integrations.httpIntegration(),
Integrations.rewriteFramesIntegration({
root: __dirname,
}),
Integrations.httpIntegration(),
...Integrations.getAutoPerformanceIntegrations(),
];
//deprecated in v8? unable to test
// if (app)
// integrations.push(
// Integrations.expressIntegration({
// app,
// }),
// );
Integrations.init({
dsn: endpoint,
integrations,
tracesSampleRate: traceSampleRate, // naming?
environment,
});
Integrations.addEventProcessor((event) => {
if (event.transaction) {
// Rewrite things that look like IDs to `:id` for sentry
event.transaction = event.transaction
.split("/")
.map((x) => (!parseInt(x) ? x : ":id"))
.join("/");
}
// TODO: does this even do anything?
delete event.request?.cookies;
if (event.request?.headers) {
delete event.request.headers["X-Real-Ip"];
delete event.request.headers["X-Forwarded-For"];
delete event.request.headers["X-Forwarded-Host"];
delete event.request.headers["X-Super-Properties"];
}
if (event.breadcrumbs) {
event.breadcrumbs = event.breadcrumbs.filter((x) => {
// Filter breadcrumbs that we don't care about
if (x.message?.includes("identified as")) return false;
if (x.message?.includes("[WebSocket] closed")) return false;
if (
x.message?.includes(
"Got Resume -> cancel not implemented",
)
)
return false;
if (x.message?.includes("[Gateway] New connection from"))
return false;
return true;
});
}
return event;
});
},
/** Call AFTER registering your routes */
errorHandler: (app: express.Application) => {
if (!Config.get().sentry.enabled) return;
if (errorHandlersUsed) return;
errorHandlersUsed = true;
Integrations.setupExpressErrorHandler(app);
// The typings for this are broken?
// eslint-disable-next-line @typescript-eslint/no-explicit-any
app.use(function onError(err: any, req: any, res: any, next: any) {
res.statusCode = 500;
res.end(res.sentry + "\n");
});
},
close: () => {
Integrations.close();
},
};
-1
View File
@@ -37,7 +37,6 @@ export * from "./Permissions";
export * from "./RabbitMQ";
export * from "./Regex";
export * from "./Rights";
export * from "./Sentry";
export * from "./Snowflake";
export * from "./Stopwatch";
export * from "./String";