{% extends "web/base.html" %} {% block title %}Harness Topology | tcx{% endblock %} {% block page_label %}Harness{% endblock %} {% block content %} {% include "web/fragments/topology_canvas.html" %}
Health checks

Harness status

{% for check in health.checks %}
{{ check.status }} {{ check.label }} {{ check.value }}
{% endfor %}
Harness systems
Harness model

Guardrails and Improvement sit under the harness

{% for system in topology.systems %}
{{ system.label }} {{ system.summary }}
{% for item in system.items %}
{{ item.label }}{{ item.summary }}
{% endfor %}
{% endfor %}
Maintenance map

Components are the implementation units

{% for component in topology.components %}
{{ component.status }} {% for tag in component.tags %} {{ tag }} {% endfor %}
{{ component.label }} {{ component.summary }} {{ component.id }}{% if component.depends_on %} depends on {{ component.depends_on|join:", " }}{% endif %}
{% endfor %}
{% endblock %}