Part of theAutomation Suite ⟶
CRON
Cron ExamplesQuick lookup for real workloads
Detail view · standard & Quartz
← Back to library

HTTP health check every 5 minutes

This page gives a visual schedule, field-by-field explanation, and multi-platform code examples for */5 * * * *. You'll also see a Quartz-style variant for systems like AWS EventBridge and enterprise schedulers.

Cron summary*/5 * * * * runs every 5 minutes, starting at the top of the hour.

This expression is commonly used for schedules like http health check every 5 minutes. On this page you'll find a visual calendar, a field-by-field breakdown, example code for popular platforms, and answers to common cron questions.

Standard*/5 * * * *
Quartz0 0/5 * ? * *

How this cron schedule works

In standard 5-field cron, the expression is minute hour day-of-month month day-of-week. For */5 * * * *, that means:

  • Minute: */5 Every 5 minute(s)
  • Hour: * Every hour
  • Day of month: * Every day of month
  • Month: * Every month
  • Day of week: * Every day of week

Many cron implementations treat day-of-month and day-of-week as a logical OR, which can surprise people when they expect "the second Sunday" or "the last weekday of the month". Where that matters, we flag it and show a Quartz-style alternative.

Visual schedule

The calendar below highlights the days in the current month (UTC) when this cron expression can fire. The minute bar shows which minutes of the hour are active.

Loading calendar…
● = at least one run on that day
Computing calendar…
Minute timeline (0–59)At 12 minute(s) each hour
Active minutes shown in .
015304559

Cron field breakdown

This table describes each cron field in */5 * * * * using simple language. It's useful when you're teaching cron to someone else or double-checking that the schedule matches what you had in mind.

FieldValueMeaning
Minute*/5Every 5 minute(s)
Hour*Every hour
Day of Month*Every day of month
Month*Every month
Day of Week*Every day of week

Upcoming runs (UTC)

The list below shows the next few times this expression will fire in UTC according to a typical cron implementation. Your actual runtime may use a different timezone, so always check the scheduler configuration in production.

No upcoming times (invalid expression or finished schedule).

Typical use cases

Developers often use this cron expression for recurring automation in background jobs, batch processing, and infrastructure tasks. Here are some realistic examples:

  • Liveness probe
  • Ping external API
  • Synthetic monitoring

Common equivalents & variants

Many teams experiment with nearby schedules when tuning load or latency requirements. These related cron expressions are frequently used alongside */5 * * * *.

Tip: many platforms accept 0/15 and */15 equivalently for "every 15 minutes". Always check your scheduler's documentation for subtle differences.

Multi-system code examples

The same schedule can be expressed slightly differently depending on the system you use. Use the tabs below to see how */5 * * * * maps to common schedulers.

Standard cron
# crontab (UTC)
*/5 * * * * /path/to/your/script.sh

Convert this cron expression

Quickly convert between standard 5-field cron and a 6-field Quartz-style expression. This is useful for platforms like AWS EventBridge that require seconds and ? placeholders.

→ Quartz:0 */5 * * * *
JAMS SchedulerEnterprise workload automation for cron-heavy teams

Run */5 * * * * like it's production-critical.

Cron is great for quick jobs, but it doesn't give you dependencies, retries, calendars, or visibility. JAMS Scheduler keeps cron's simplicity while adding timelines, alerts, audit history, and event-based triggers across platforms.

  • Import existing cron schedules into a single view.
  • Add dependencies, calendars, and retries without changing code.
  • Trigger jobs on file drops, APIs, or upstream completion.

FAQ

What does this cron expression mean?

HTTP health check every 5 minutes. In plain English, this schedule runs every 5 minutes, starting at the top of the hour. The minute, hour, day-of-month, month, and day-of-week fields work together to decide when the job is allowed to execute.

Is this valid on Quartz or EventBridge?

Yes, you can use a Quartz-style equivalent like 0 0/5 * ? * *. Some systems require a 6- or 7-field format with seconds and a ? value where a day field is not used. Always verify the exact syntax for your platform.

What timezone does this cron use?

The examples on this page show upcoming run times in UTC. Real schedules usually run in the timezone configured by your scheduler (system cron, Kubernetes, GitHub Actions, etc.). Double-check this before relying on local clock times like 09:00 or midnight.

Why does this sometimes run on extra days?

In 5-field cron, day-of-month and day-of-week are evaluated as a logical OR in many implementations. That means a schedule like 30 1 8-14 * 0 can run both on the 8–14th of the month and on any Sunday in that range. If you need "exactly the 2nd Sunday", consider a Quartz expression like 0 30 1 ? * SUN#2 instead.

Explore more cron expressions

If you're still designing your schedule, these related cron patterns are a good starting point. They cover the most common "every X" and day-of-week schedules developers search for.