Skip to main content

Scheduling Reports

Coming soon!

Custom Scheduling

Content can be delivered using the UI options for selecting time periods. In specific cases, you may want finer grain control over timing content delivery, using custom cron strings. Omni uses an AWS flavor of cron. The current expected TZ for these cron strings is UTC.

Below are several examples of custom schedules, more notes and examples here:

                                  Allowed Values    Allowed Special Characters   

┌───────────── minute 0-59 * , - /
│ ┌───────────── hour 0-23 * , - /
│ │ ┌───────────── day of month 1-31 * , - / L W ?
│ │ │ ┌───────────── month 1-12 or JAN-DEC * , - /
│ │ │ │ ┌───────────── day of week 0-6 or SUN-SAT * , - / # L ?
│ │ │ │ │ ┌───────────── year any * , - /
│ │ │ │ │ │
* * * * * *
  • 9AM each morning: 0 9 ? * ? *
  • 6:30AM on the last day of the month: 30 6 L * ? *
  • 8:45 AM every weekday: 45 8 ? * MON-FRI *