{% extends "layouts/content-bootstrap.html" %} {% load django_tables2 %} {% load utils %} {% block content %}

Migration Status

Migration of active V1 devices to V2

Number of active devices which have V2 support.

{{ active_level }} of {{ active_devices }}
{% if active_level != active_devices %}

Active devices still using V1:

{% for hostname, dev in v1_problems.items %} [ {{ hostname }} ] {% endfor %} {% endif %}

Active V2 devices exclusive to V2

Number of active V2 devices which only support V2.

{{ exclusive_count }} of {{ active_devices }}
{% if exclusive_count != active_devices %}

Active V2 devices which are not exclusive to V2:

{% for hostname, dev in exclusive.items %} [ {{ hostname }} ] {% endfor %} {% endif %}

Migration of active devices to enabled V2 healthchecks

Number of active devices with enabled health checks undefined in the database.

{{ healthchecks }} of {{ active_health }}
{% if health_check_level > 0 %}

Active devices still using healthchecks in the database:

{% for hostname, dev in db_healthchecks.items %} [ {{ hostname }} ] {% endfor %} {% endif %}

Active devices with enabled healthchecks

Number of active devices with an enabled healthcheck.

{{ nonhc_devices }} of {{ active_health }}
{% if no_healthcheck %}

Active devices without V2 healthchecks:

{% endif %} {% endblock %}