Cron Expression: */15 * * * *
Every 15 minutes (00, 15, 30, 45) of every hour.
Field Breakdown
| Field | Value |
|---|---|
| Minute | */15 |
| Hour | * |
| Day of Month | * |
| Month | * |
| Day of Week | * |
Common Use Case
Sync jobs, log rotation triggers, heartbeat reports.
Sample Fire Times (UTC)
| When | Unix Timestamp |
|---|---|
| 2026-09-16 23:00 | 1789599600 |
| 2026-09-16 23:15 | 1789600500 |
| 2026-09-16 23:30 | 1789601400 |
| 2026-09-16 23:45 | 1789602300 |
| 2026-09-17 00:00 | 1789603200 |
Sample times computed at build; your scheduler will fire on its own clock.
Equivalents in Popular Schedulers
crontab (Linux/macOS)
*/15 * * * * /path/to/your/script.sh
GitHub Actions (.github/workflows/*.yml)
on:
schedule:
- cron: '*/15 * * * *'
AWS EventBridge (cron format)
cron(*/15 * * * *) # Note: AWS uses 6 fields with year
Kubernetes CronJob
spec: schedule: "*/15 * * * *"