Variable: RETRY_CONSTRAINTS
const RETRY_CONSTRAINTS: {
DEFAULT: 3;
MAX: 10;
MIN: 0;
STEP: 1;
};
Defined in: src/constants.ts:339
Retry attempt constraints for per-monitor retry configuration.
Type Declarationโ
DEFAULTโ
readonly DEFAULT: 3 = 3;
Default number of retry attempts
MAXโ
readonly MAX: 10 = 10;
Maximum retry attempts allowed
MINโ
readonly MIN: 0 = 0;
Minimum retry attempts (immediate failure)
STEPโ
readonly STEP: 1 = 1;
Step increment for retry configuration
Remarksโ
Defines the limits for retry attempts when monitors fail, balancing between resilience and avoiding excessive load.