NIP: host memory high
Alert: NipHostMemoryHigh · Severity: Warning
What this means
Available memory below 15% (usage >85%) for 3+ minutes.
Business impact
- Risk of OOM kills on containers — see container OOM.
- EasyPay outward has fired this in production.
Confirm
free -h
docker stats --no-stream
dmesg | tail -20 | grep -i oom
Fix
- Find memory hog:
docker stats --no-stream | sort -k4 -hr. - Restart leaky container if identified (coordinate if web).
- Prune unused Docker resources if disk/memory pressure combined:
docker system df. - Do not blindly restart postgres without app team approval.
Escalate if
OOM events occur or memory stays critical after restart.