{% extends "dashboard/base.html" %} {% block title %}Health - Cyborg Dashboard{% endblock %} {% block content %}

Project Health Monitor

Saved health checks and risk assessment for projects that have been scanned

{{ healthy_count }}
Healthy Projects
{{ medium_risk_count }}
Medium Risk
{{ high_risk_count }}
High/Critical Risk
{{ avg_health_score }}%
Avg Health Score

Projects Requiring Attention

{% for project in at_risk_projects %} {% endfor %}
PROJECT HEALTH SCORE RISK LEVEL ISSUES LAST CHECKED ACTIONS
{{ (project.health_score * 100)|int }}%
{{ project.risk_level|upper }}
{% if project.blocked_tasks > 0 %}
◈ {{ project.blocked_tasks }} blocked task(s)
{% endif %} {% if project.failed_tasks > 0 %}
✖ {{ project.failed_tasks }} failed task(s)
{% endif %}
{{ project.last_checked|relative_time if project.last_checked else 'Never' }}
View Details
{% if not at_risk_projects %}

All Systems Healthy

No projects require attention at this time

{% endif %} {% endblock %}