Guides
Cron Job
Learn how to set up and manage automated cron jobs for your AI agent testing and evaluation workflows.
What is a Cron Job?
Cron jobs run automated calls on a schedule to check the status of your agent and alert you if things fail.
Creating a Cron Job
1
Navigate to Evaluators and Select Scenarios
- Go to your main dashboard
- Navigate to the Evaluators section
- Select the scenarios you want to automate
- Look for the Action button in the top right corner
2
Create Cron Job from Actions
- Click the Action button in the top right 2. A dropdown menu will appear
- Select “Create a Cron Job” from the dropdown options
3
Choose Cron Job Type
You’ll be presented with two options:
- Manual: Configure custom cron settings
- Predefined: Use pre-configured schedule templates
4
Configure Your Cron Job Settings
Basic Information
- Name: Enter a descriptive name for your cron job
- Tip: Give your cron job a descriptive name to help identify it later
Schedule Configuration
Cron Expression: * * * * *
- Choose between Manual Input or Quick Schedule
- The format represents: every minute, every hour, every day, every month, every day of the week
Timezone: Default is Asia/Calcutta
(adjust as needed)
Number of Times to Run: Set how many times this cron job should run (default: 1)
Detailed Cron Settings
Configure each time component individually:
- Minute:
*
- Examples:
*
,*/5
,0-59
,30
- Examples:
- Hour:
*
- Examples:
*
,*/2
,0-23
,14
- Examples:
- Day of Month:
*
- Examples:
*
,1-31
,15
,L
(Last day of month)
- Examples:
- Month:
*
- Examples:
*
,1-12
,6
- Examples:
- Day of Week:
*
- Examples:
*
,0-6
(where 0 = Sunday)
- Examples:
5
Save Your Cron Job
- Review all your settings to ensure they’re correct
- Click “Save” or “Create” to activate the schedule
- Your cron job will now run automatically according to the specified schedule
Managing Existing Cron Jobs
Accessing Cron Job Management
- Navigate to the top right corner of your dashboard
- Go to the project section
- Select Cron Jobs to access the management interface
Available Actions
From the cron job management interface, you can:
- Update: Modify existing cron job settings and schedules
- Delete: Remove cron jobs that are no longer needed
- Monitor: View execution status and history
Common Cron Schedule Examples
Here are some frequently used cron expressions:
0 0 * * *
- Daily at midnight0 0 * * 0
- Weekly on Sunday at midnight0 0 1 * *
- Monthly on the 1st at midnight0 */6 * * *
- Every 6 hours*/30 * * * *
- Every 30 minutes0 9 * * 1-5
- Every weekday at 9 AM