{% extends "layout.html" %} {% block title %}TrueNAS Burn-In — History{% endblock %} {% block content %}

Burn-In History

Export CSV
{% set states = [('all','All'), ('passed','Passed'), ('failed','Failed'), ('cancelled','Cancelled'), ('running','Running'), ('unknown','Unknown')] %} {% for val, label in states %} {{ label }} {% if val in counts %}{{ counts[val] }}{% endif %} {% endfor %}
{% if jobs %} {% for j in jobs %} {% endfor %} {% else %} {% endif %}
# Drive Profile State Operator Started Completed Duration Error
{{ j.id }} {{ j.devname }} {{ j.serial }} {{ j.profile }} {{ j.state }} {{ j.operator or '—' }} {{ j.started_at | format_dt_full }} {{ j.finished_at | format_dt_full }} {{ j.duration_seconds | format_duration }} {% if j.error_text %} {{ j.error_text[:60] }}{% if j.error_text | length > 60 %}…{% endif %} {% else %}—{% endif %} Detail
No burn-in jobs found.
{% if total_pages > 1 %} {% else %} {% endif %} {% endblock %}