◢ HEALTH MONITOR ◣
MONITORING
ACTIVE
HEALTH CHECK
SYSTEM STATUS
▶ HEALTHY ◀
DATABASE
CONNECTED
REDIS
CONNECTED
SERVER
RUNNING
UPTIME
10h 2m 46s
MEMORY USED
158MB
MEMORY TOTAL
205MB
RSS MEMORY
390MB
[ HEALTH STATUS ]
system@magicine:~# ./health-check
[✓] System health check initiated
[✓] Checking database connection...
[✓] Database: CONNECTED
[✓] Checking Redis connection...
[✓] Redis: CONNECTED
[✓] Checking memory usage...
[✓] Memory: 158MB / 205MB (77%)
[✓] RSS Memory: 390MB
[✓] External Memory: 25MB
system@magicine:~# cat health.json
{
  "status": "healthy",
  "message": "Magicine-Pharma backend healthy",
  "uptime": 36166.85,
  "uptime_formatted": "10h 2m 46s",
  "timestamp": "2026-04-15T15:24:26.887Z",
  "memory": {
    "heap_used": 158,
    "heap_total": 205,
    "rss": 390,
    "external": 25
  },
  "database": "connected",
  "redis": "connected"
}
system@magicine:~#