◢ HEALTH MONITOR ◣
MONITORING
ACTIVE
HEALTH CHECK
SYSTEM STATUS
▶ HEALTHY ◀
DATABASE
CONNECTED
REDIS
CONNECTED
SERVER
RUNNING
UPTIME
1d 2h 0m
MEMORY USED
116MB
MEMORY TOTAL
126MB
RSS MEMORY
315MB
[ HEALTH STATUS ]
system@magicine:~# ./health-check
[✓] System health check initiated
[✓] Checking database connection...
[✓] Database: CONNECTED
[✓] Checking Redis connection...
[✓] Redis: CONNECTED
[✓] Checking memory usage...
[✓] Memory: 116MB / 126MB (92%)
[✓] RSS Memory: 315MB
[✓] External Memory: 24MB
system@magicine:~# cat health.json
{
  "status": "healthy",
  "message": "Magicine-Pharma backend healthy",
  "uptime": 93626.08,
  "uptime_formatted": "1d 2h 0m",
  "timestamp": "2026-03-30T08:10:21.825Z",
  "memory": {
    "heap_used": 116,
    "heap_total": 126,
    "rss": 315,
    "external": 24
  },
  "database": "connected",
  "redis": "connected"
}
system@magicine:~#