aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/instrumentation.node.ts3
-rw-r--r--apps/web/instrumentation.ts5
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/web/instrumentation.node.ts b/apps/web/instrumentation.node.ts
new file mode 100644
index 00000000..2f4c1d58
--- /dev/null
+++ b/apps/web/instrumentation.node.ts
@@ -0,0 +1,3 @@
+import { initTracing } from "@karakeep/shared-server";
+
+initTracing("web");
diff --git a/apps/web/instrumentation.ts b/apps/web/instrumentation.ts
new file mode 100644
index 00000000..41630756
--- /dev/null
+++ b/apps/web/instrumentation.ts
@@ -0,0 +1,5 @@
+export async function register() {
+ if (process.env.NEXT_RUNTIME === "nodejs") {
+ await import("./instrumentation.node");
+ }
+}