mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 04:32:35 +01:00
Move sentry init to util. use sentry in each module, not just bundle
This commit is contained in:
parent
f9ab60ce25
commit
6755f1392d
@ -1,7 +1,7 @@
|
|||||||
import "missing-native-js-functions";
|
import "missing-native-js-functions";
|
||||||
import { Server, ServerOptions } from "lambert-server";
|
import { Server, ServerOptions } from "lambert-server";
|
||||||
import { Authentication, CORS } from "./middlewares/";
|
import { Authentication, CORS } from "./middlewares/";
|
||||||
import { Config, initDatabase, initEvent } from "@fosscord/util";
|
import { Config, initDatabase, initEvent, Sentry } from "@fosscord/util";
|
||||||
import { ErrorHandler } from "./middlewares/ErrorHandler";
|
import { ErrorHandler } from "./middlewares/ErrorHandler";
|
||||||
import { BodyParser } from "./middlewares/BodyParser";
|
import { BodyParser } from "./middlewares/BodyParser";
|
||||||
import { Router, Request, Response, NextFunction } from "express";
|
import { Router, Request, Response, NextFunction } from "express";
|
||||||
@ -38,6 +38,7 @@ export class FosscordServer extends Server {
|
|||||||
await Config.init();
|
await Config.init();
|
||||||
await initEvent();
|
await initEvent();
|
||||||
await initInstance();
|
await initInstance();
|
||||||
|
await Sentry.init(this.app);
|
||||||
|
|
||||||
let logRequests = process.env["LOG_REQUESTS"] != undefined;
|
let logRequests = process.env["LOG_REQUESTS"] != undefined;
|
||||||
if (logRequests) {
|
if (logRequests) {
|
||||||
@ -96,6 +97,8 @@ export class FosscordServer extends Server {
|
|||||||
this.app.use(ErrorHandler);
|
this.app.use(ErrorHandler);
|
||||||
TestClient(this.app);
|
TestClient(this.app);
|
||||||
|
|
||||||
|
Sentry.errorHandler(this.app);
|
||||||
|
|
||||||
if (logRequests)
|
if (logRequests)
|
||||||
console.log(
|
console.log(
|
||||||
red(
|
red(
|
||||||
|
@ -7,10 +7,7 @@ import * as Gateway from "@fosscord/gateway";
|
|||||||
import { CDNServer } from "@fosscord/cdn";
|
import { CDNServer } from "@fosscord/cdn";
|
||||||
import express from "express";
|
import express from "express";
|
||||||
import { green, bold, yellow } from "picocolors";
|
import { green, bold, yellow } from "picocolors";
|
||||||
import { Config, initDatabase } from "@fosscord/util";
|
import { Config, initDatabase, Sentry } from "@fosscord/util";
|
||||||
import * as Sentry from "@sentry/node";
|
|
||||||
import * as Tracing from "@sentry/tracing";
|
|
||||||
import * as Integrations from "@sentry/integrations";
|
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
const server = http.createServer();
|
const server = http.createServer();
|
||||||
@ -30,81 +27,12 @@ process.on("SIGTERM", async () => {
|
|||||||
async function main() {
|
async function main() {
|
||||||
await initDatabase();
|
await initDatabase();
|
||||||
await Config.init();
|
await Config.init();
|
||||||
|
await Sentry.init(app);
|
||||||
//Sentry
|
|
||||||
if (Config.get().sentry.enabled) {
|
|
||||||
console.log(
|
|
||||||
`[Bundle] ${yellow(
|
|
||||||
"You are using Sentry! This may slightly impact performance on large loads!",
|
|
||||||
)}`,
|
|
||||||
);
|
|
||||||
Sentry.init({
|
|
||||||
dsn: Config.get().sentry.endpoint,
|
|
||||||
integrations: [
|
|
||||||
new Sentry.Integrations.Http({ tracing: true }),
|
|
||||||
new Tracing.Integrations.Express({ app }),
|
|
||||||
new Tracing.Integrations.Mysql(),
|
|
||||||
new Integrations.RewriteFrames({
|
|
||||||
root: __dirname,
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
tracesSampleRate: Config.get().sentry.traceSampleRate,
|
|
||||||
environment: Config.get().sentry.environment,
|
|
||||||
});
|
|
||||||
|
|
||||||
Sentry.addGlobalEventProcessor((event, hint) => {
|
|
||||||
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;
|
|
||||||
});
|
|
||||||
|
|
||||||
app.use(Sentry.Handlers.requestHandler());
|
|
||||||
app.use(Sentry.Handlers.tracingHandler());
|
|
||||||
}
|
|
||||||
|
|
||||||
server.listen(port);
|
server.listen(port);
|
||||||
await Promise.all([api.start(), cdn.start(), gateway.start()]);
|
await Promise.all([api.start(), cdn.start(), gateway.start()]);
|
||||||
|
|
||||||
if (Config.get().sentry.enabled) {
|
Sentry.errorHandler(app);
|
||||||
app.use(Sentry.Handlers.errorHandler());
|
|
||||||
app.use(function onError(err: any, req: any, res: any, next: any) {
|
|
||||||
res.statusCode = 500;
|
|
||||||
res.end(res.sentry + "\n");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`[Server] ${green(`listening on port ${bold(port)}`)}`);
|
console.log(`[Server] ${green(`listening on port ${bold(port)}`)}`);
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Server, ServerOptions } from "lambert-server";
|
import { Server, ServerOptions } from "lambert-server";
|
||||||
import { Config, initDatabase, registerRoutes } from "@fosscord/util";
|
import { Config, initDatabase, registerRoutes, Sentry } from "@fosscord/util";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import avatarsRoute from "./routes/avatars";
|
import avatarsRoute from "./routes/avatars";
|
||||||
import guildProfilesRoute from "./routes/guild-profiles";
|
import guildProfilesRoute from "./routes/guild-profiles";
|
||||||
@ -18,6 +18,8 @@ export class CDNServer extends Server {
|
|||||||
async start() {
|
async start() {
|
||||||
await initDatabase();
|
await initDatabase();
|
||||||
await Config.init();
|
await Config.init();
|
||||||
|
await Sentry.init(this.app);
|
||||||
|
|
||||||
this.app.use((req, res, next) => {
|
this.app.use((req, res, next) => {
|
||||||
res.set("Access-Control-Allow-Origin", "*");
|
res.set("Access-Control-Allow-Origin", "*");
|
||||||
// TODO: use better CSP policy
|
// TODO: use better CSP policy
|
||||||
@ -87,6 +89,8 @@ export class CDNServer extends Server {
|
|||||||
);
|
);
|
||||||
this.log("verbose", "[Server] Route /guilds/banners registered");
|
this.log("verbose", "[Server] Route /guilds/banners registered");
|
||||||
|
|
||||||
|
Sentry.errorHandler(this.app);
|
||||||
|
|
||||||
return super.start();
|
return super.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
require("module-alias/register");
|
require("module-alias/register");
|
||||||
import dotenv from "dotenv";
|
import "dotenv/config";
|
||||||
dotenv.config();
|
|
||||||
|
|
||||||
import { CDNServer } from "./Server";
|
import { CDNServer } from "./Server";
|
||||||
const server = new CDNServer({ port: Number(process.env.PORT) || 3003 });
|
const server = new CDNServer({ port: Number(process.env.PORT) || 3003 });
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
import "missing-native-js-functions";
|
import "missing-native-js-functions";
|
||||||
import dotenv from "dotenv";
|
import dotenv from "dotenv";
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
import { closeDatabase, Config, initDatabase, initEvent } from "@fosscord/util";
|
import {
|
||||||
|
closeDatabase,
|
||||||
|
Config,
|
||||||
|
initDatabase,
|
||||||
|
initEvent,
|
||||||
|
Sentry,
|
||||||
|
} from "@fosscord/util";
|
||||||
import ws from "ws";
|
import ws from "ws";
|
||||||
import { Connection } from "./events/Connection";
|
import { Connection } from "./events/Connection";
|
||||||
import http from "http";
|
import http from "http";
|
||||||
@ -50,6 +56,8 @@ export class Server {
|
|||||||
await initDatabase();
|
await initDatabase();
|
||||||
await Config.init();
|
await Config.init();
|
||||||
await initEvent();
|
await initEvent();
|
||||||
|
await Sentry.init();
|
||||||
|
|
||||||
if (!this.server.listening) {
|
if (!this.server.listening) {
|
||||||
this.server.listen(this.port);
|
this.server.listen(this.port);
|
||||||
console.log(`[Gateway] online on 0.0.0.0:${this.port}`);
|
console.log(`[Gateway] online on 0.0.0.0:${this.port}`);
|
||||||
|
102
src/util/util/Sentry.ts
Normal file
102
src/util/util/Sentry.ts
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
import { Config } from "./Config";
|
||||||
|
import { yellow } from "picocolors";
|
||||||
|
|
||||||
|
import express from "express";
|
||||||
|
import * as SentryNode from "@sentry/node";
|
||||||
|
import * as Tracing from "@sentry/tracing";
|
||||||
|
import * as Integrations from "@sentry/integrations";
|
||||||
|
|
||||||
|
// 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 (!!SentryNode.getCurrentHub().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.",
|
||||||
|
)}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
SentryNode.init({
|
||||||
|
dsn: endpoint,
|
||||||
|
integrations: [
|
||||||
|
new SentryNode.Integrations.Http({ tracing: true }),
|
||||||
|
new Tracing.Integrations.Express({ app }),
|
||||||
|
new Tracing.Integrations.Mysql(),
|
||||||
|
new Integrations.RewriteFrames({
|
||||||
|
root: __dirname,
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
tracesSampleRate: traceSampleRate, // naming?
|
||||||
|
environment,
|
||||||
|
});
|
||||||
|
|
||||||
|
SentryNode.addGlobalEventProcessor((event, hint) => {
|
||||||
|
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;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (app) {
|
||||||
|
app.use(SentryNode.Handlers.requestHandler());
|
||||||
|
app.use(SentryNode.Handlers.tracingHandler());
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/** Call AFTER registering your routes */
|
||||||
|
errorHandler: (app: express.Application) => {
|
||||||
|
if (!Config.get().sentry.enabled) return;
|
||||||
|
if (errorHandlersUsed) return;
|
||||||
|
errorHandlersUsed = true;
|
||||||
|
|
||||||
|
app.use(SentryNode.Handlers.errorHandler());
|
||||||
|
app.use(function onError(err: any, req: any, res: any, next: any) {
|
||||||
|
res.statusCode = 500;
|
||||||
|
res.end(res.sentry + "\n");
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
@ -20,3 +20,4 @@ export * from "./String";
|
|||||||
export * from "./Array";
|
export * from "./Array";
|
||||||
export * from "./TraverseDirectory";
|
export * from "./TraverseDirectory";
|
||||||
export * from "./InvisibleCharacters";
|
export * from "./InvisibleCharacters";
|
||||||
|
export * from "./Sentry";
|
||||||
|
Loading…
Reference in New Issue
Block a user