1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: increase max app names to 1000 (#4421)

## About the changes
Looking at our metrics this number should be a good threshold, giving us
more functionality than just limiting it to 100.
This commit is contained in:
Gastón Fournier 2023-08-04 15:03:21 +02:00 committed by GitHub
parent 452f3942a7
commit 29478828b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ import { InstanceStatsService } from 'lib/services';
// eslint-disable-next-line @typescript-eslint/naming-convention
const _responseTime = responseTime.default;
const appNameReportingThreshold = 100;
const appNameReportingThreshold = 1000;
export function responseTimeMetrics(
eventBus: EventEmitter,