Oxana Dashboard

{% include "_tabs.html" %} {% match job %} {% when Some with (job) %}

{{ job.job.name }}

{{ job.id }}
{% if is_dead %} Dead {% endif %}
Queue: {{ job.queue }}
Retries: {{ job.meta.retries }}
Created: {{ job.meta.created_at|relative_time_micros }}
Scheduled: {{ job.meta.scheduled_at|relative_time_micros }}
Started: {{ job.meta.started_at|relative_time_micros_opt }}
Unique: {{ job.meta.unique }}
Resurrect: {{ job.meta.resurrect }}
Throttle cost: {% match job.meta.throttle_cost %} {% when Some with (cost) %}{{ cost }} {% when None %}— {% endmatch %}
{% let arg_pills = job.job.args|simple_args %} {% include "_arg_pills.html" %} {% if job.job.args|show_args_json %}
Arguments
{{ job.job.args|pretty_json }}
{% endif %} {% match job.meta.state %} {% when Some with (state) %} {% if state|show_job_progress %} {% let progress_started_at = job.meta.started_at %} {% include "_job_progress.html" %} {% else %}
State
{{ state|pretty_json }}
{% endif %} {% when None %} {% endmatch %} {% match job.meta.error %} {% when Some with (error) %}
Error
{{ error }}
{% when None %} {% endmatch %}
{% when None %}
No job found for {{ job_id }}
{% endmatch %}