{% extends "base.html" %} {% block title %}SDD+ - Metrics{% endblock %} {% block content %}

Metrics

{% if transitions %}

Transitions ({{ transitions | length }})

{% for t in transitions %} {% endfor %}
Timestamp Phase Role From To
{{ t.timestamp[:19] if t.timestamp else "-" }} {{ t.phase }} {{ t.role }} {{ t.from_state }} {{ t.to_state }}
{% endif %} {% if audits %}

Audits ({{ audits | length }})

{% for a in audits %} {% endfor %}
Timestamp Phase Verdict Coverage Findings
{{ a.timestamp[:19] if a.timestamp else "-" }} {{ a.phase }} {{ a.verdict }} {{ a.coverage_pct | default(0) }}% {{ a.finding_count | default(0) }}
{% endif %} {% if not transitions and not audits %}

No metrics data found. Run sdd transition or sdd audit to generate telemetry.

{% endif %} {% endblock %}