added default values on the UI

This commit is contained in:
IrynaMatveieva 2025-03-04 09:39:31 +02:00
parent eadc705817
commit 7994802e4b

View File

@ -156,11 +156,11 @@ export function createTenantProfileConfiguration(type: TenantProfileType): Tenan
rpcTtlDays: 0, rpcTtlDays: 0,
queueStatsTtlDays: 0, queueStatsTtlDays: 0,
ruleEngineExceptionsTtlDays: 0, ruleEngineExceptionsTtlDays: 0,
maxCalculatedFieldsPerEntity: 0, maxCalculatedFieldsPerEntity: 5,
maxArgumentsPerCF: 0, maxArgumentsPerCF: 10,
maxDataPointsPerRollingArg: 0, maxDataPointsPerRollingArg: 1000,
maxStateSizeInKBytes: 0, maxStateSizeInKBytes: 32,
maxSingleValueArgumentSizeInKBytes: 0, maxSingleValueArgumentSizeInKBytes: 2,
calculatedFieldDebugEventsRateLimit: '' calculatedFieldDebugEventsRateLimit: ''
}; };
configuration = {...defaultConfiguration, type: TenantProfileType.DEFAULT}; configuration = {...defaultConfiguration, type: TenantProfileType.DEFAULT};