1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00
Cherry pick  #6883
This commit is contained in:
Jaanus Sellin 2024-04-18 14:03:36 +03:00 committed by GitHub
parent e4ad98cc0f
commit a59d179da6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 181 additions and 32 deletions

View File

@ -2,12 +2,7 @@
"name": "unleash-server",
"description": "Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.",
"version": "5.11.2",
"keywords": [
"unleash",
"feature toggle",
"feature",
"toggle"
],
"keywords": ["unleash", "feature toggle", "feature", "toggle"],
"files": [
"dist",
"docs",
@ -80,23 +75,11 @@
"testTimeout": 10000,
"globalSetup": "./scripts/jest-setup.js",
"transform": {
"^.+\\.tsx?$": [
"@swc/jest"
]
"^.+\\.tsx?$": ["@swc/jest"]
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/frontend/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testPathIgnorePatterns": ["/dist/", "/node_modules/", "/frontend/"],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/",
@ -234,14 +217,8 @@
"tough-cookie": "4.1.3"
},
"lint-staged": {
"*.{js,ts}": [
"biome check --apply --no-errors-on-unmatched"
],
"*.{jsx,tsx}": [
"biome check --apply --no-errors-on-unmatched"
],
"*.json": [
"biome format --write --no-errors-on-unmatched"
]
"*.{js,ts}": ["biome check --apply --no-errors-on-unmatched"],
"*.{jsx,tsx}": ["biome check --apply --no-errors-on-unmatched"],
"*.json": ["biome format --write --no-errors-on-unmatched"]
}
}

View File

@ -75,6 +75,7 @@ exports[`should create default config 1`] = `
"experiments": {
"adminTokenKillSwitch": false,
"anonymiseEventLog": false,
"applicationOverviewNewQuery": false,
"automatedActions": false,
"bearerTokenMiddleware": false,
"caseInsensitiveInOperators": false,

View File

@ -10,6 +10,9 @@ import type { Logger, LogProvider } from '../logger';
import type { Db } from './db';
import type { IApplicationOverview } from '../features/metrics/instance/models';
import { applySearchFilters } from '../features/feature-search/search-utils';
import type { IFlagResolver } from '../types';
import metricsHelper from '../util/metrics-helper';
import { DB_TIME } from '../metric-events';
const COLUMNS = [
'app_name',
@ -125,9 +128,24 @@ export default class ClientApplicationsStore
private logger: Logger;
constructor(db: Db, eventBus: EventEmitter, getLogger: LogProvider) {
private timer: Function;
private flagResolver: IFlagResolver;
constructor(
db: Db,
eventBus: EventEmitter,
getLogger: LogProvider,
flagResolver: IFlagResolver,
) {
this.db = db;
this.logger = getLogger('client-applications-store.ts');
this.flagResolver = flagResolver;
this.timer = (action: string) =>
metricsHelper.wrapTimer(eventBus, DB_TIME, {
store: 'client-applications',
action,
});
}
async upsert(details: Partial<IClientApplication>): Promise<void> {
@ -291,6 +309,60 @@ export default class ClientApplicationsStore
async getApplicationOverview(
appName: string,
): Promise<IApplicationOverview> {
if (!this.flagResolver.isEnabled('applicationOverviewNewQuery')) {
return this.getOldApplicationOverview(appName);
}
const stopTimer = this.timer('getApplicationOverview');
const query = this.db
.with('metrics', (qb) => {
qb.select([
'cme.app_name',
'cme.environment',
'f.project',
this.db.raw(
'array_agg(DISTINCT cme.feature_name) as features',
),
])
.from('client_metrics_env as cme')
.leftJoin('features as f', 'f.name', 'cme.feature_name')
.groupBy('cme.app_name', 'cme.environment', 'f.project');
})
.select([
'm.project',
'm.environment',
'm.features',
'ci.instance_id',
'ci.sdk_version',
'ci.last_seen',
'a.strategies',
])
.from({ a: 'client_applications' })
.leftJoin('metrics as m', 'm.app_name', 'a.app_name')
.leftJoin('client_instances as ci', function () {
this.on('ci.app_name', '=', 'm.app_name').andOn(
'ci.environment',
'=',
'm.environment',
);
})
.where('a.app_name', appName)
.orderBy('m.environment', 'asc');
const rows = await query;
stopTimer();
if (!rows.length) {
throw new NotFoundError(`Could not find appName=${appName}`);
}
const existingStrategies: string[] = await this.db
.select('name')
.from('strategies')
.pluck('name');
return this.mapApplicationOverviewData(rows, existingStrategies);
}
async getOldApplicationOverview(
appName: string,
): Promise<IApplicationOverview> {
const stopTimer = this.timer('getApplicationOverviewOld');
const query = this.db
.with('metrics', (qb) => {
qb.distinct(
@ -321,6 +393,7 @@ export default class ClientApplicationsStore
.where('a.app_name', appName)
.orderBy('cme.environment', 'asc');
const rows = await query;
stopTimer();
if (!rows.length) {
throw new NotFoundError(`Could not find appName=${appName}`);
}
@ -334,6 +407,96 @@ export default class ClientApplicationsStore
mapApplicationOverviewData(
rows: any[],
existingStrategies: string[],
): IApplicationOverview {
if (!this.flagResolver.isEnabled('applicationOverviewNewQuery')) {
return this.mapOldApplicationOverviewData(rows, existingStrategies);
}
const featureCount = new Set(rows.flatMap((row) => row.features)).size;
const missingStrategies: Set<string> = new Set();
const environments = rows.reduce((acc, row) => {
const {
environment,
instance_id,
sdk_version,
last_seen,
project,
features,
strategies,
} = row;
if (!environment) return acc;
strategies.forEach((strategy) => {
if (
!DEPRECATED_STRATEGIES.includes(strategy) &&
!existingStrategies.includes(strategy)
) {
missingStrategies.add(strategy);
}
});
const featuresNotMappedToProject = !project;
let env = acc.find((e) => e.name === environment);
if (!env) {
env = {
name: environment,
instanceCount: instance_id ? 1 : 0,
sdks: sdk_version ? [sdk_version] : [],
lastSeen: last_seen,
uniqueInstanceIds: new Set(
instance_id ? [instance_id] : [],
),
issues: {
missingFeatures: featuresNotMappedToProject
? features
: [],
},
};
acc.push(env);
} else {
if (instance_id) {
env.uniqueInstanceIds.add(instance_id);
env.instanceCount = env.uniqueInstanceIds.size;
}
if (featuresNotMappedToProject) {
env.issues.missingFeatures = features;
}
if (sdk_version && !env.sdks.includes(sdk_version)) {
env.sdks.push(sdk_version);
}
if (new Date(last_seen) > new Date(env.lastSeen)) {
env.lastSeen = last_seen;
}
}
return acc;
}, []);
environments.forEach((env) => {
delete env.uniqueInstanceIds;
env.sdks.sort();
});
return {
projects: [
...new Set(
rows
.filter((row) => row.project != null)
.map((row) => row.project),
),
],
featureCount,
environments,
issues: {
missingStrategies: [...missingStrategies],
},
};
}
private mapOldApplicationOverviewData(
rows: any[],
existingStrategies: string[],
): IApplicationOverview {
const featureCount = new Set(rows.map((row) => row.feature_name)).size;
const missingStrategies: Set<string> = new Set();

View File

@ -65,6 +65,7 @@ export const createStores = (
db,
eventBus,
getLogger,
flagResolver,
),
clientInstanceStore: new ClientInstanceStore(db, eventBus, getLogger),
clientMetricsStoreV2: new ClientMetricsStoreV2(

View File

@ -58,7 +58,8 @@ export type IFlagKey =
| 'variantDependencies'
| 'disableShowContextFieldSelectionValues'
| 'bearerTokenMiddleware'
| 'projectOverviewRefactorFeedback';
| 'projectOverviewRefactorFeedback'
| 'applicationOverviewNewQuery';
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
@ -288,6 +289,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_PROJECT_OVERVIEW_REFACTOR_FEEDBACK,
false,
),
applicationOverviewNewQuery: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_APPLICATION_OVERVIEW_NEW_QUERY,
false,
),
};
export const defaultExperimentalOptions: IExperimentalOptions = {

View File

@ -54,6 +54,7 @@ process.nextTick(async () => {
disableShowContextFieldSelectionValues: false,
variantDependencies: true,
projectOverviewRefactorFeedback: true,
applicationOverviewNewQuery: true,
},
},
authentication: {

View File

@ -56,6 +56,7 @@ beforeAll(async () => {
experimental: {
flags: {
strictSchemaValidation: true,
applicationOverviewNewQuery: true,
},
},
},