The Job model is used to schedule and record the execution of background tasks.
The name or other identifier of the NetBox object with which the job is associated.
The type of object (model) associated with this job.
The date and time at which the job itself was created.
The date and time at which the job is/was scheduled to execute (if not submitted for immediate execution at the time of creation).
The interval (in minutes) at which a scheduled job should re-execute.
The date and time at which the job completed (if complete).
The user who created the job.
The job's current status. Potential values include:
| Value | Description |
|---|---|
| Pending | Awaiting execution by an RQ worker process |
| Scheduled | Scheduled for a future date/time |
| Running | Currently executing |
| Completed | Successfully completed |
| Failed | The job did not complete successfully |
| Errored | An unexpected error was encountered during execution |
Any data associated with the execution of the job, such as log output.
The job's UUID, used for unique identification within a queue.