{% extends "base.html" %} {% block title %}Audit Logs - AWS Inventory Browser{% endblock %} {% block content %}

Audit Logs

History of cleanup operations and their results

{% if operations %} {% for op in operations %} {% endfor %}
Operation Baseline Timestamp Results Status
{{ op.operation_id[:12] }}...
{{ op.mode | default('cleanup') }}
{{ op.baseline_snapshot }} {{ op.timestamp }}
{{ op.succeeded_count | default(0) }} succeeded {% if op.failed_count %} {{ op.failed_count }} failed {% endif %} {% if op.skipped_count %} {{ op.skipped_count }} skipped {% endif %}
{% set status_colors = {'completed': 'green', 'failed': 'red', 'partial': 'amber', 'running': 'blue'} %} {% set color = status_colors.get(op.status, 'gray') %} {{ op.status }}
{% else %}

No audit logs

Cleanup operations will appear here after they are executed.

{% endif %}
{% endblock %}