Variable: CHECK_INTERVALS
const
CHECK_INTERVALS:IntervalOption
[]
Defined in: src/constants.ts:176
Available check intervals for site monitoring.
Remarksโ
Ranges from 5 seconds to 30 days with sensible progressions. Provides a comprehensive set of monitoring intervals from high-frequency testing to long-term health checks. Values are optimized for different monitoring scenarios and performance requirements.
Exampleโ
const selectedInterval = CHECK_INTERVALS.find(
(interval) => interval.value === 300000
);
console.log(selectedInterval?.label); // "5 minutes"