all repos — website @ a926b530d3c9dd12472b918c620d8bce84e96834

My website

Remove Sentry tracing (keep error logging)
Alan Pearce alan@alanpearce.eu
Thu, 11 Apr 2024 21:05:29 +0200
commit

a926b530d3c9dd12472b918c620d8bce84e96834

parent

e2241b8c0d1a0e5bd48d27f6ac98b3a54143da4a

1 files changed, 0 insertions(+), 23 deletions(-)

jump to
M src/app.tssrc/app.ts
@@ -154,17 +154,6 @@ const hostname = request.headers.get("host")?.toLowerCase() || "unknown";     const endTimer = metrics.requestDuration.startTimer({ path: pathname });
     let status;
     let newpath;
-    const transaction = Sentry.startTransaction({
-      name: pathname,
-      op: "http.server",
-      description: `${request.method} ${pathname}`,
-      tags: {
-        url: request.url,
-        "http.host": hostname,
-        "http.method": request.method,
-        "http.user_agent": request.headers.get("user-agent"),
-      },
-    });
     try {
       if (pathname === "/health") {
         return new Response("OK", { status: (status = 200) });
@@ -204,7 +193,6 @@ path: pathname,             status_code: (status = 304),
             cache_basis: etagMatch ? "etag" : "mtime",
           });
-          transaction.setHttpStatus(304);
           return new Response("", { status: status, headers: defaultHeaders });
         }
         const encodings = (request.headers.get("accept-encoding") || "")
@@ -222,7 +210,6 @@ suffix = ".gz";         }
 
         status = 200;
-        transaction.setHttpStatus(status);
         metrics.requests.inc({
           method: request.method,
           hostname,
@@ -268,14 +255,6 @@ status: status,             headers: { location: newpath },
           });
         }
-        metrics.requests.inc({
-          method: request.method,
-          hostname,
-          path: pathname,
-          status_code: (status = 404),
-          content_encoding: contentEncoding,
-        });
-        transaction.setHttpStatus(status);
         const notfound = files.get("/404.html");
         if (notfound) {
           return serveFile(notfound, status, {
@@ -290,7 +269,6 @@ });         }
       }
     } catch (error) {
-      transaction.setHttpStatus((status = 503));
       metrics.requests.inc({
         method: request.method,
         hostname,
@@ -306,7 +284,6 @@ if (status === 200) {         const seconds = endTimer();
         metrics.requestDuration.observe(seconds);
       }
-      transaction.finish();
       log.info(
         request.method,
         status,