Executive Summary
{{ resilience_score }}
Resilience
{{ total_components }}
Components
{{ critical_count }}
Critical
{{ warning_count }}
Warnings
{{ passed_count }}
Passed
{% if score_explanation %}
Score Explanation
{% for line in score_explanation %}
{{ line }}
{% endfor %}
{% endif %}
Critical Findings
{% if critical_findings %}
{% for f in critical_findings %}
{{ f.description }}
{% if f.effects %}
Cascade path
{% for e in f.effects %}
{{ e.health_icon }}
{{ e.component_name }}
{{ e.reason }}
{% if e.time_str %}{{ e.time_str }}{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No critical findings detected.
{% endif %}
Warnings
{% if warning_findings %}
{% for f in warning_findings %}
{{ f.description }}
{% if f.effects %}
Cascade path
{% for e in f.effects %}
{{ e.health_icon }}
{{ e.component_name }}
{{ e.reason }}
{% if e.time_str %}{{ e.time_str }}{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No warnings detected.
{% endif %}
Infrastructure Overview
| Name |
Type |
Host |
Replicas |
Utilization |
CPU |
Memory |
Disk |
Connections |
{% for c in components %}
| {{ c.name }} |
{{ c.type }} |
{{ c.host }}:{{ c.port }} |
{{ c.replicas }} |
{{ c.utilization }}%
|
{{ c.cpu }}% |
{{ c.memory }}% |
{{ c.disk }}% |
{{ c.connections }} |
{% endfor %}
Dependency Map
{{ dependency_svg | safe }}