From b263eb33a4e5c2f9fafd5853a77691d0f2f70274 Mon Sep 17 00:00:00 2001 From: Maxime Lalo Date: Tue, 2 Jan 2024 17:52:52 +0100 Subject: [PATCH] :sparkles: Setting sentry service tag --- sentry.client.config.ts | 2 ++ sentry.edge.config.ts | 2 ++ sentry.server.config.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/sentry.client.config.ts b/sentry.client.config.ts index 1200514b..b9e7b626 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -30,3 +30,5 @@ Sentry.init({ }), ], }); + +Sentry.setTag("service", "leCoffre-front"); diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts index 0d8edd27..5fbff9a4 100644 --- a/sentry.edge.config.ts +++ b/sentry.edge.config.ts @@ -16,3 +16,5 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, }); + +Sentry.setTag("service", "leCoffre-front"); diff --git a/sentry.server.config.ts b/sentry.server.config.ts index 57e9946b..c3eaf2b0 100644 --- a/sentry.server.config.ts +++ b/sentry.server.config.ts @@ -15,3 +15,5 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, }); + +Sentry.setTag("service", "leCoffre-front");