Metrics
Server performance, API operations, and historical trends
{{ memory.used }} used
{{ memory.total }} total
{{ disk.free }} free
{{ disk.total }} total
{{ app.storage_used }}
{{ app.buckets }}
Buckets
{{ app.objects }}
Objects
{% set has_issues = (cpu_percent > 80) or (memory.percent > 85) or (disk.percent > 90) %}
{% if has_issues %}Issues Detected{% else %}All Systems Normal{% endif %}
{% if has_issues %}
{% if cpu_percent > 80 %}CPU {{ cpu_percent }}%{% endif %}
{% if memory.percent > 85 %}{% if cpu_percent > 80 %} · {% endif %}Memory {{ memory.percent }}%{% endif %}
{% if disk.percent > 90 %}{% if cpu_percent > 80 or memory.percent > 85 %} · {% endif %}Disk {{ disk.percent }}%{% endif %}
{% else %}
All resources within normal operating parameters
{% endif %}
{{ app.uptime_days }}d
Uptime
{% if operation_metrics_enabled %}
Loading operation history...
{% endif %}
{% if metrics_history_enabled %}
Loading...
{% endif %}
{% endblock %}
{% block extra_scripts %}
{% endblock %}