Status

{% if health.status == "ok" %}

Healthy

{% else %}

Degraded

{% endif %}

App: {{ health.app_name }}

Host: {{ health.hostname }}

Toronto Time: {{ health.server_time_toronto }}

UTC Time: {{ health.server_time_utc }}

Database

{% if health.database.ok %}

Connected

{% else %}

Connection Error

{% endif %}

Error: {{ health.database.error or "None" }}

Uptime

Application: {{ health.app_uptime_human }}

Server: {{ health.server_uptime_human }}

Load Average

1 min: {{ health.load_average["1m"] }}

5 min: {{ health.load_average["5m"] }}

15 min: {{ health.load_average["15m"] }}

Memory

Total: {{ health.memory.total_mb }} MB

Available: {{ health.memory.available_mb }} MB

Used: {{ health.memory.used_mb }} MB

Used %: {{ health.memory.used_percent }}%

Disk /

Total: {{ health.disk_root.total_gb }} GB

Used: {{ health.disk_root.used_gb }} GB

Free: {{ health.disk_root.free_gb }} GB

Used %: {{ health.disk_root.used_percent }}%

{% include "footer.html" %}