◢ HEALTH MONITOR ◣
MONITORING
ACTIVE
HEALTH CHECK
SYSTEM STATUS
▶ HEALTHY ◀
DATABASE
CONNECTED
REDIS
CONNECTED
SERVER
RUNNING
UPTIME
48m 41s
MEMORY USED
65MB
MEMORY TOTAL
71MB
RSS MEMORY
154MB
[ HEALTH STATUS ]
system@magicine:~# ./health-check
[✓] System health check initiated
[✓] Checking database connection...
[✓] Database: CONNECTED
[✓] Checking Redis connection...
[✓] Redis: CONNECTED
[✓] Checking memory usage...
[✓] Memory: 65MB / 71MB (92%)
[✓] RSS Memory: 154MB
[✓] External Memory: 22MB
system@magicine:~# cat health.json
{
  "status": "healthy",
  "message": "Magicine-Pharma backend healthy",
  "uptime": 2921.05,
  "uptime_formatted": "48m 41s",
  "timestamp": "2026-02-14T19:43:45.109Z",
  "memory": {
    "heap_used": 65,
    "heap_total": 71,
    "rss": 154,
    "external": 22
  },
  "database": "connected",
  "redis": "connected"
}
system@magicine:~#