From bcd43e9cc44eaa8b5e780270fa9f5400aaeab5d8 Mon Sep 17 00:00:00 2001 From: "Hung-Han (Henry) Chen" Date: Fri, 2 Jul 2021 13:35:28 +0300 Subject: [PATCH] Add dsn Signed-off-by: Hung-Han (Henry) Chen --- src/common/vars.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/common/vars.ts b/src/common/vars.ts index a49c8da910..b2ccc23ca7 100644 --- a/src/common/vars.ts +++ b/src/common/vars.ts @@ -70,3 +70,8 @@ export const supportUrl = "https://docs.k8slens.dev/latest/support/" as string; export const appSemVer = new SemVer(packageInfo.version); export const docsUrl = `https://docs.k8slens.dev/main/` as string; + +// Sentry DSNs are safe to keep public because they only allow submission of new events +// and related event data; they do not allow read access to any information. +// ref: https://docs.sentry.io/product/sentry-basics/dsn-explainer/#dsn-utilization +export const dsn = "https://673ac8dc2d4649b5bc498639765f995b@o625296.ingest.sentry.io/5753768";