summary refs log tree commit diff
path: root/util/src/config/types/SentryConfiguration.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/src/config/types/SentryConfiguration.ts')
-rw-r--r--util/src/config/types/SentryConfiguration.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/util/src/config/types/SentryConfiguration.ts b/util/src/config/types/SentryConfiguration.ts
new file mode 100644
index 00000000..836094a1
--- /dev/null
+++ b/util/src/config/types/SentryConfiguration.ts
@@ -0,0 +1,8 @@
+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();
+}
\ No newline at end of file