Cron Expression: Every 10 seconds (Quartz / 6-field syntax)
Cron Expression
*/10 * * * * *Every 10 seconds (Quartz / 6-field syntax)
Click the expression to select it, then copy.
Quick Answer
The cron expression for "every 10 seconds (quartz / 6-field syntax)" is `*/10 * * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Second | */10 | Every 10 second |
| Minute | * | Every minute |
| Hour | * | Every hour |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →High-frequency polling
- →Real-time metrics
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "*/10 * * * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '*/10 * * * * *'Linux crontab
*/10 * * * * * /path/to/your-command.sh