1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-26 06:21:18 -04:00

add sentry error logging to all serverless functions

This commit is contained in:
2021-06-20 06:48:27 -04:00
parent 363b4edf1c
commit ffd95fec8f
5 changed files with 188 additions and 10 deletions

View File

@@ -1,5 +1,7 @@
/// <reference types="./types/projects" />
import * as Sentry from "@sentry/node";
import * as Tracing from "@sentry/tracing"; // eslint-disable-line @typescript-eslint/no-unused-vars
import { VercelRequest, VercelResponse } from "@vercel/node";
import { escape } from "html-escaper";
import { DateTime } from "luxon";
@@ -10,6 +12,12 @@ import { gql } from "graphql-tag";
const username = "jakejarvis";
const endpoint = "https://api.github.com/graphql";
Sentry.init({
dsn: process.env.SENTRY_DSN || "",
environment: process.env.NODE_ENV || process.env.VERCEL_ENV || process.env.SENTRY_ENVIRONMENT || "",
tracesSampleRate: 1.0,
});
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export default async (req: VercelRequest, res: VercelResponse) => {
try {
@@ -37,6 +45,10 @@ export default async (req: VercelRequest, res: VercelResponse) => {
} catch (error) {
console.error(error);
// log error to sentry, give it 2 seconds to finish sending
Sentry.captureException(error);
await Sentry.flush(2000);
res.status(400).json({ message: error.message });
}
};