Variable: TIMEOUT_CONSTRAINTS
const TIMEOUT_CONSTRAINTS: {
MAX: 300;
MIN: 1;
STEP: 1;
};
Defined in: src/constants.ts:323
Request timeout constraints for HTTP monitoring.
Type Declarationโ
MAXโ
readonly MAX: 300 = 300;
Maximum timeout in seconds
MINโ
readonly MIN: 1 = 1;
Minimum timeout in seconds
STEPโ
readonly STEP: 1 = 1;
Step increment in seconds
Remarksโ
Defines the user-facing timeout limits in seconds for form validation and UI display. These values are converted to milliseconds for backend use.