Cron Expression for Peak Hours Monitoring
Run every 15 minutes during business hours (9 AM - 5 PM) on weekdays
Cron Expression
*/15 9-17 * * 1-5Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
*/15Every 15 minutes
Hours
9-17From 9:00 to 17:00
Day of Month
*Any value
Month
*Any value
Day of Week
1-5From Monday to Friday
Summary
This schedule will run your task run every 15 minutes during business hours (9 am - 5 pm) on weekdays.