1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

chore: remove debug metrics flag (#7348)

This commit is contained in:
Mateusz Kwasniewski 2024-06-11 10:44:16 +02:00 committed by GitHub
parent 76c8cbad0c
commit 44ca447fd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 10 deletions

View File

@ -83,7 +83,6 @@ exports[`should create default config 1`] = `
"collectTrafficDataUsage": false,
"commandBarUI": false,
"createProjectWithEnvironmentConfig": false,
"debugMetrics": false,
"demo": false,
"disableBulkToggle": false,
"disableMetrics": false,

View File

@ -141,10 +141,6 @@ export default class ClientMetricsServiceV2 {
data: ClientMetricsSchema,
clientIp: string,
): Promise<void> {
if (this.flagResolver.isEnabled('debugMetrics')) {
this.logger.debug(`Metrics received: ${JSON.stringify(data)}`);
}
const value = await clientMetricsSchema.validateAsync(data);
const toggleNames = Object.keys(value.bucket.toggles).filter(
(name) =>

View File

@ -60,7 +60,6 @@ export type IFlagKey =
| 'manyStrategiesPagination'
| 'newCreateProjectUI'
| 'enableLegacyVariants'
| 'debugMetrics'
| 'navigationSidebar'
| 'commandBarUI'
| 'flagCreator';
@ -288,10 +287,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_ENABLE_LEGACY_VARIANTS,
false,
),
debugMetrics: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_DEBUG_METRICS,
false,
),
navigationSidebar: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_SIDEBAR_NAVIGATION,
true,