These jobs have been executing for more than 30 minutes and may be orphaned. This can happen after a container restart.
| ID | Queue | Worker | Started At | Actions |
|---|---|---|---|---|
| #<%= job.id %> | <%= job.queue %> | <%= format_worker_name(job.worker) %> | <%= format_datetime(job.attempted_at) %> | <.link href={~p"/diagnostics/reset_job/#{job.id}"} method="post" class="text-primary hover:underline mr-3"> Reset <.link href={~p"/diagnostics/cancel_job/#{job.id}"} method="post" class="text-red-400 hover:underline" data-confirm="Cancel this job?"> Cancel |
No failed jobs. Everything is running smoothly!
<% else %>These jobs have failed and are waiting to be retried. You can reset them to retry immediately or cancel them.
| ID | Queue | Worker | Attempts | Last Error | Actions |
|---|---|---|---|---|---|
| #<%= job.id %> | <%= job.queue %> | <%= format_worker_name(job.worker) %> | <%= job.attempt %>/<%= job.max_attempts %> | <%= extract_last_error(job.errors) %> | <.link href={~p"/diagnostics/reset_job/#{job.id}"} method="post" class="text-primary hover:underline mr-3"> Reset <.link href={~p"/diagnostics/cancel_job/#{job.id}"} method="post" class="text-red-400 hover:underline" data-confirm="Cancel this job?"> Cancel |