{{ jobs|length }}
Total
{{ jobs|selectattr('status','equalto','running')|list|length }}
Running
{{ jobs|selectattr('status','equalto','finished')|list|length }}
Finished
{{ jobs|selectattr('status','equalto','queued')|list|length }}
Queued
{% set fcnt = namespace(n=0) %}{% for j in jobs %}{% if j.status.startswith('failed') %}{% set fcnt.n = fcnt.n + 1 %}{% endif %}{% endfor %}{{ fcnt.n }}
Failed
{{ scheduled_count }}
Scheduled
| Job | VM | Status | Schedule | Started | Actions |
|---|---|---|---|---|---|
|
{{ job.label or ('Job #' + job.id[:8]) }}
{{ job.id[:12] }}…
|
{{ job.vm_name }} | {% if job.status == 'running' %} Running {% elif job.status == 'finished' %} Finished {% elif job.status == 'queued' %} Queued {% elif job.status.startswith('failed') %} Failed {% else %} {{ job.status }} {% endif %} |
{% if job.schedule_type and job.schedule_type != 'now' %}
{{ job.schedule_type|capitalize }}
{% else %}
One-time
{% endif %}
{% if job.retention_type == 'keep_count' %}
Keep: {{ job.retention_value }} backups
{% elif job.retention_type == 'keep_days' %}
Keep: {{ job.retention_value }} days
{% else %}
Keep: All
{% endif %}
|
{{ job.started_fmt }} |
View
{% if job.status != 'running' and job.status != 'queued' %}
{% endif %}
{% if job.schedule_id %}
{% endif %}
{% if job.status != 'running' and job.status != 'queued' %}
{% endif %}
|
No backup jobs yet.
Create your first job