Oxanus Dashboard
{% include "_tabs.html" %}
Cron Workers ({{ total }})
{% if rows.is_empty() %}
No cron workers registered
{% else %}
| Worker |
Queue |
Schedule |
Next Run |
{% for row in &rows %}
{% match row %}
{% when CronRow::Group { name, depth: _ } %}
| {{ name }} |
{% when CronRow::Worker { view: cw, depth: _ } %}
| ↳ {{ cw.short_name }} |
{{ cw.queue_key }} |
{{ cw.schedule }} |
{{ cw.next_run_micros|relative_time_micros_opt }} |
{% endmatch %}
{% endfor %}
{% endif %}