Cron: Every 10 minutes

Runs the job every ten minutes.

*/10 * * * *

At minute 0, 10, 20, 30, 40 and 50 of every hour.

Field breakdown

MinuteHourDay of monthMonthDay of week
*/10****

The five fields are, in order: minute (0–59), hour (0–23), day of month (1–31), month (1–12), and day of week (0–6, Sunday = 0).

Common use case

Monitoring checks and periodic syncs that don’t need minute-level precision.

Watch out for

Because it aligns to the clock, many servers running the same job fire simultaneously — stagger the minute offset to spread load.

Other common cron expressions

Build and test your own cron schedule with a live preview.

Open the Cron Expression tool