Cron Scheduling
Description
Flows can be scheduled with cron expressions.
Motivation
Scheduled runs provide continuous monitoring without manual intervention.
Example
curl -X POST http://localhost:8080/api/v1/crons \
-d '{"flow_id":"", "expression":"0 * * * *", "enabled":true}' \
-H 'Content-Type: application/json'
Questions & Answers
Q: Where can I see run history?
A: The cron tab shows past runs with their origin.
Comments
Assign descriptive names to your cron jobs for easy identification.
Other Uses
Combine cron with environments to monitor multiple deployments.