- Verify that scheduled jobs are running on time.
- Identify failed or unusually long-running jobs.
- Drill into logs only when something looks wrong.
How to view Cron job executions
- Open your project in the Console.
- Select your chosen Environment.
- Navigate to:
- Services —> Apps & Services —> Apps —> app
- Services —> Apps & Services —> Apps —> Workers (for background jobs).
- Click the Crons tab to view your scheduled jobs.
Understanding the visualization
Each execution appears as a vertical bar in the visualization:
This combination of color and height helps in spotting outliers, for example:
- A sudden tall red bar indicates a failed job that took longer than usual.
- Consistently tall green bars suggest a job that may need optimization.
- Execution date and time
- Duration
- Status (success/failure)
Troubleshooting and best practices
- Monitor for patterns: Look for recurring red (failed) bars or progressively longer runtimes.
- Drill into logs: Clicking a bar takes you directly to logs for that specific execution.
- Correlate with metrics: Combine this view with application metrics to identify performance bottlenecks.
- Adjust Cron timing: If jobs overlap or run too frequently, adjust their schedule in your
cronsconfiguration.
Investigate consistently high durations
If you notice that your Cron job runtimes are consistently increasing, this may indicate:- Growing data volumes,
- Inefficient queries
- Resource limits being reached.