From 15b000cadedf642f067d94ff15c69c9bdbf50a03 Mon Sep 17 00:00:00 2001 From: Aly Fluckey Date: Wed, 13 Dec 2023 13:04:56 -0500 Subject: [PATCH] fix(glean): prefix app channel --- modules/glean/runtime/glean-plugin.client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/glean/runtime/glean-plugin.client.ts b/modules/glean/runtime/glean-plugin.client.ts index d4b8e2c2df..0b54014969 100644 --- a/modules/glean/runtime/glean-plugin.client.ts +++ b/modules/glean/runtime/glean-plugin.client.ts @@ -17,7 +17,7 @@ export default defineNuxtPlugin((nuxtApp) => { const userAllowGlean = getPreferences(userSettings.value, 'allowGlean') const uploadEnabled = userAllowGlean - Glean.initialize(GLEAN_APP_ID, uploadEnabled, { channel: env }) + Glean.initialize(GLEAN_APP_ID, uploadEnabled, { channel: `elk-${env}` }) userAgent.set(navigator.userAgent) // Debugging