{% extends "base.html" %} {% set active_page = 'reports' %} {% block title %}Reports & Analytics — vSphere Backup Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
Reports & Analytics
System backup telemetry, storage usage growth, and runs logs history
Total Backups
{{ stats.total }}
Success Rate
{{ stats.success_rate }}%
Total Storage Saved
{{ stats.total_size_gb }} GB
Avg Duration
{{ stats.avg_duration_fmt }}
💾 Backup Size Trend (Last 15 Runs)
⏱️ Backup Duration Trend (Last 15 Runs)
Backup Run History
🔍
{% if runs %} {% for run in runs %} {% endfor %} {% else %} {% endif %}
Job Details Virtual Machine Size (GB) Duration Start Time Alert Status Status
{{ run.job_label or 'Job (No Label)' }}
ID: {{ run.job_id[:12] }}...
{{ run.vm_name }} {{ run.size_gb }} GB {{ run.duration_fmt }}
{{ run.started_fmt }}
{% if run.notification_sent %} 🟢 Sent {% else %} Skipped/None {% endif %} {% if run.status.lower() in ('finished', 'success') %} Success {% elif 'failed' in run.status.lower() %} Failed {% elif 'error' in run.status.lower() %} Error {% else %} {{ run.status }} {% endif %}
No historical backup runs logged yet. Runs will appear here as scheduled or manual backups complete.
{% endblock %} {% block scripts %} {% endblock %}