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