Skip to main content

Schedule Expression

If you are Cron Guru, you can use cron expression. Otherwise, you can use sentence start with word every.

  • Pattern every {week_day}: run at the beginning of a week day. (Support abbriviation with 3 letters)
    Example:
    • every Sunday ~ every Sun
    • every Monday at 8, every monday at 9:30
  • Pattern: every {interval} {time_unit}
    Examples:
    • every 30 minutes: run every 30 minutes.
    • every 3 hours: run every 3 hours.
    • every 2 days: run every 2 days.
  • Combining with keyword at, you can define specific minutes or hour (support multiple times)
    Examples:
    • every hour at minute 10,30: run at minutes 10, 30 every hour .
    • every 3 hour at minute 30: run at minute 30 every 3 hours.
    • every day at hour 2,3: run at hour 2 and 3 every day.
  • Combining with keyword on, you can define specific days (support multiple days)
    Examples:
    • every month on day 5,6,7: run on days 5th, 6th, 7th each month.
    • every month on 5,6 at 5:30: run on days 5th, 6th each month at hour 5:30.
  • Combining with phrase from {interval} to {interval}, you can define a range.
    Examples:
    • every 3 hours from 5 to 23 at minutes 7: run at minute 7th every 3 hours from 5 to 23.
    • every month on day 4,5 from 3 to 5: run on days 4th, 5th each month from 3 to 5.