Skip to main content

Azure Functions Timer (NCRONTAB) Generator

Azure Functions timer triggers use NCRONTAB — a six-field cron format where the first field is seconds, not minutes. That single extra field is the most common Azure scheduling bug: an expression you think runs every five minutes actually runs every five seconds.

Build an NCRONTAB expression below and copy the TimerTrigger attribute into your function.

Official Azure Functions documentation →

Expression

NCRONTAB puts seconds first (6 fields). '*/5 * * * *' would mean every 5 seconds — prefix a seconds value.
Sec
Min
Hour
Day
Month
DOW
0
0
9
*
*
1-5

Tip: press Ctrl+Enter to copy

Presets

Visual Builder

Description

At 09:00 AM, Monday through Friday

Timezone
June 2026
Fires on 22 days
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

Azure Functions cron syntax

SecMinHourDayMonthDOW
009**1-5

Azure Functions cron examples

Click any example to load it into the generator above.

Monitor your Azure Functions cron jobs

A cron expression only controls when a job is scheduled — not whether it actually ran. These tools alert you when a scheduled job fails, runs late, or never starts.

The link above is an affiliate link — we may earn a commission at no extra cost to you.

Frequently asked questions

Why does my Azure timer run every 5 seconds instead of 5 minutes?

NCRONTAB's first field is seconds, so */5 * * * * (read as a 5-field cron) becomes a 6-field schedule that fires every 5 seconds. To run every 5 minutes, put 0 in seconds and */5 in minutes: 0 */5 * * * *.

How many fields does an Azure Functions cron expression have?

Six: Seconds, Minutes, Hours, Day-of-month, Month, Day-of-week. This is one more than standard Unix cron because of the leading seconds field.

What timezone does an Azure timer trigger use?

UTC by default. Set the WEBSITE_TIME_ZONE app setting (e.g. “Eastern Standard Time”) to use another zone, though this is not honored on the Linux Consumption and Flex Consumption plans.