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

Analytics

{{ drives_total }} drives tracked
{{ overall.total or 0 }} Total Jobs
{{ overall.passed or 0 }} Passed
{{ overall.failed or 0 }} Failed
{{ overall.running or 0 }} Running
{{ overall.cancelled or 0 }} Cancelled
{% if overall.total and overall.total > 0 %}
{{ "%.0f" | format(100 * (overall.passed or 0) / overall.total) }}% Pass Rate
{% endif %}

Results by Drive Model

{% if by_model %}
{% for m in by_model %} {% endfor %}
Model Total Passed Failed Pass Rate Rate Bar
{{ m.model }} {{ m.total }} {{ m.passed }} {{ m.failed }} {{ m.pass_rate or 0 }}%
{% else %}
No completed burn-in jobs yet.
{% endif %}

Activity — Last 14 Days

{% if by_day %}
{% for d in by_day %} {% endfor %}
Date Total Passed Failed
{{ d.day }} {{ d.total }} {{ d.passed }} {{ d.failed }}
{% else %}
No activity in the last 14 days.
{% endif %}
{% endblock %}