◢ HEALTH MONITOR ◣
MONITORING
ACTIVE
HEALTH CHECK
SYSTEM STATUS
▶ HEALTHY ◀
DATABASE
CONNECTED
REDIS
CONNECTED
SERVER
RUNNING
UPTIME
4h 53m 55s
MEMORY USED
75MB
MEMORY TOTAL
110MB
RSS MEMORY
237MB
[ HEALTH STATUS ]
system@magicine:~# ./health-check
[✓] System health check initiated
[✓] Checking database connection...
[✓] Database: CONNECTED
[✓] Checking Redis connection...
[✓] Redis: CONNECTED
[✓] Checking memory usage...
[✓] Memory: 75MB / 110MB (68%)
[✓] RSS Memory: 237MB
[✓] External Memory: 22MB
system@magicine:~# cat health.json
{
  "status": "healthy",
  "message": "Magicine-Pharma backend healthy",
  "uptime": 17635.78,
  "uptime_formatted": "4h 53m 55s",
  "timestamp": "2026-02-12T22:15:25.561Z",
  "memory": {
    "heap_used": 75,
    "heap_total": 110,
    "rss": 237,
    "external": 22
  },
  "database": "connected",
  "redis": "connected"
}
system@magicine:~#