Executions track a single run of your monitored tasks.

Each time your application's task scheduler kicks off a task, a new execution record will be created.

A healthy execution lifecycle will start by the tasks next scheduled start time and finish within the tasks allowed runtime.

Note that a configurable grace period is added to the scheduled task's next start time to prevent false alerts due to network latency or simultaneous job delays.

Execution lifecycles that exceed the allowed execution run time will be considered to have timed out.

Tasks that are scheduled in your app/Console/Kernel.php using when() or unless() truth test constraints may finish in a healthy, but skipped state.

Status

An execution can exist in one of five statuses:

Running
We have received a start ping, indicating that the execution is currently in progress.
Finished
We received a finish ping, indicating that the execution completed without failure.
Skipped
We received a skipped ping, indicating that your task was evaluated for execution but did not run based on the result of a truth test constraint in your scheduler.
Timedout
A finish ping was either not received, or the finish ping was not received within the allowed runtime. Note that an execution that reached the timedout status is not final. For a long-running task, the finish ping may arrive later.
Failed
An exception was thrown during execution of your task.