{% extends "base.html" %} {% block title %}Fleet · HivePlane{% endblock %} {% block content %}

Fleet

Workloads
{{ view.total_workloads }}
Certified
{{ view.status_counts.get("certified", 0) }}
Provisional
{{ view.status_counts.get("provisional", 0) }}
Quarantined
{{ view.status_counts.get("quarantined", 0) }}
Total spend
${{ "%.2f"|format(view.total_spend_usd) }}

Workloads

{% if view.workloads %} {% for workload in view.workloads %} {% endfor %}
Workload Owner Team Certification Runs Failures Last run Burn
{{ workload.name }} {{ workload.owner }} {{ workload.team or "—" }} {{ workload.certification_status }} {% for state, count in workload.state_counts.items() %}{{ state }}:{{ count }}{% if not loop.last %} · {% endif %}{% endfor %} {{ workload.recent_failures }} {{ workload.last_run_at or "—" }} ${{ "%.2f"|format(workload.budget_burn_usd) }}
{% else %}

No workloads registered yet.

{% endif %}

Recent runs

{% if recent_runs %} {% for run in recent_runs %} {% endfor %}
Run Workload State Updated
{{ run.id }} {{ run.workload_id }} {{ run.state }} {{ run.updated_at }}
{% else %}

No runs recorded yet.

{% endif %} {% endblock %}