{% extends "base.html" %} {% block content %}

System Metrics

Real-time server performance and storage usage

Auto-refresh: 5s
CPU Usage

{{ cpu_percent }}%

Current load Normal
Memory

{{ memory.percent }}%

{{ memory.used }} used {{ memory.total }} total
Disk Space

{{ disk.percent }}%

{{ disk.free }} free {{ disk.total }} total
Storage

{{ app.storage_used }}

{{ app.buckets }}
Buckets
{{ app.objects }}
Objects
System Overview
Resource Value Status
Total Disk Capacity
{{ disk.total }} Hardware
Available Space
{{ disk.free }} {% if disk.percent > 90 %} Critical {% elif disk.percent > 75 %} Low {% else %} Good {% endif %}
MyFSIO Data
{{ app.storage_used }} Application
Total Objects
{{ app.objects }} Count
{% set has_issues = (cpu_percent > 80) or (memory.percent > 85) or (disk.percent > 90) %}
{% if has_issues %} {% else %} {% endif %}
{% if has_issues %} {% else %} {% endif %} v{{ app.version }}

System Health

{% if has_issues %}
    {% if cpu_percent > 80 %}
  • CPU usage is high ({{ cpu_percent }}%)
  • {% endif %} {% if memory.percent > 85 %}
  • Memory usage is high ({{ memory.percent }}%)
  • {% endif %} {% if disk.percent > 90 %}
  • Disk space is critically low ({{ disk.percent }}% used)
  • {% endif %}
{% else %}

All resources are within normal operating parameters.

{% endif %}
{{ app.uptime_days }}d
Uptime
{{ app.buckets }}
Active Buckets
{% endblock %} {% block extra_scripts %} {% endblock %}