What It Does
- Triggers workflows at set times — hourly, daily, or custom intervals.
- Adds a UTC timestamp to every workflow run for logging and audit trails.
- Provides a structured JSON of UTC-based time details (year, month, day, hour, minute, second, timezone).
- Powers time-based automations like daily reports, SLA checks, and pipeline snapshots.
Output
The Scheduler Node outputs a dataset with one column:| Column | Description |
|---|---|
data | JSON string containing current UTC time details |
Example JSON:
If your table already has a
data column, the system auto-renames it (e.g., data_1).How It Works
- Reads your schedule configuration.
- At the scheduled time, triggers the workflow.
- Captures the current UTC time at that exact moment.
- Formats time details into JSON (timestamp, date, time, timezone).
- Outputs the dataset with the
datacolumn for downstream use.
🚀 Example Use Cases & Prompts
| Use Case | Setup Example |
|---|---|
| Daily Pipeline Report | Trigger every morning at 8am; timestamp report |
| SLA Monitoring | Run every hour; log cases missing SLA deadlines |
| Weekly Snapshots | Trigger Fridays at 5pm; export pipeline snapshot |
| Activity Logging | Add timestamps to audit trails automatically |
✨ Pro Tips
⚠️ Important Considerations
🛠 Troubleshooting & Gotchas
| Symptom | Likely Cause | Quick Fix |
|---|---|---|
| Workflow doesn’t trigger | Schedule misconfigured | Double-check your schedule format |
| Time doesn’t match local TZ | Scheduler outputs UTC | Add conversion logic downstream |
Column renamed to data_1 | Naming conflict in dataset | Rename output column for clarity |
📝 FAQ
Can I trigger at specific times of day?
Can I trigger at specific times of day?
✅ Yes — set daily or hourly schedules, or use cron expressions for precision.
Can I change the timezone?
Can I change the timezone?
No — output is always UTC. Convert downstream if you need local time.
Does this node consume credits?
Does this node consume credits?
Yes, this is a listening node and all listening nodes take 1 Credit.
💰 Pricing
| Action | Credit Cost |
|---|---|
| Workflow trigger event | 1 credit each |
The Scheduler Node consumes 1 credit per scheduled trigger (e.g., hourly, daily).
Any downstream processing may add additional credits depending on nodes used.
Any downstream processing may add additional credits depending on nodes used.
⏰ Put the Scheduler Node at the top of your workflow to run tasks automatically—hourly, daily, or on any schedule you set. 🚀