Browser Journeys

Scheduling

Configure when and how often your journeys run with intervals and cron schedules.

Scheduling

Configure when your journeys run using simple intervals or flexible cron expressions.

Schedule Types

Interval Scheduling

Run journeys at fixed intervals:

IntervalRuns per DayBest For
1 minute1,440Critical paths, real-time monitoring
5 minutes288Important flows
15 minutes96Standard monitoring
30 minutes48Less critical paths
1 hour24Low-priority checks

Cron Scheduling

For more control, use cron expressions:

0 9 * * 1-5   # 9 AM, weekdays only

Cron Expression Format

┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-6, Sunday=0)
│ │ │ │ │
* * * * *

Common Cron Examples

ScheduleCron ExpressionDescription
Every hour0 * * * *At minute 0 of every hour
Daily at midnight0 0 * * *12:00 AM every day
Daily at 9 AM0 9 * * *9:00 AM every day
Weekdays at 9 AM0 9 * * 1-59:00 AM Monday-Friday
Every 6 hours0 */6 * * *At 00:00, 06:00, 12:00, 18:00
First day of month0 0 1 * *Midnight on the 1st
Every 15 minutes*/15 * * * *:00, :15, :30, :45

Use crontab.guru to build and validate cron expressions.

All schedules run in UTC.

Run Locations

Choose where to run your journey:

  • Global - Automatically selected region
  • US East - Virginia
  • US West - Oregon
  • EU West - Ireland
  • EU Central - Frankfurt
  • Asia Pacific South - Singapore
  • Asia Pacific Northeast - Tokyo

Pause and Resume

Manual Pause

Temporarily stop a journey without deleting it:

  1. Go to the journey
  2. Click Pause
  3. Journey stops running but configuration is preserved

Run Settings

SettingDescription
TimeoutMaximum duration for a single run
Max RetriesNumber of retry attempts on failure

Triggering Runs

Manual Trigger

Run a journey immediately:

  1. Go to the journey
  2. Click Run Now

Schedule Best Practices

1. Match Interval to Criticality

CriticalityRecommended Interval
Critical (checkout, login)1-5 minutes
Important (core features)5-15 minutes
Standard (other features)15-30 minutes
Low priority1 hour

2. Set Realistic Timeouts

Allow enough time for slow networks, page load times, and third-party service responses.

3. Account for Dependencies

If journey A depends on data created by journey B, schedule them with a time gap:

# Journey B: Create test data (runs first)
0 */4 * * *   # Every 4 hours

# Journey A: Uses test data (runs after)
5 */4 * * *   # 5 minutes after B