{% extends "base.html" %} {% block title %}Drift — vmware-harden{% endblock %} {% block content %}

Drift Timeline

{% if not has_data %}

No scans yet — no drift to show.

Run vmware-harden scan --target <vc> twice; drift is computed automatically on the second scan.

{% else %}

Events per snapshot (last 5)

Most recent events ({{ events|length }})

{% if events|length == 0 %}

No drift detected since the previous snapshot.

{% else %} {% for e in events %} {% endfor %}
Node Field Old → New Detected
{{ e.node_id }} {{ e.field }} {{ e.old_value if e.old_value is not none else '—' }} {{ e.new_value if e.new_value is not none else '—' }} {{ e.detected_at or '' }}
{% endif %}
{% endif %} {% endblock %}