Check disk space with df util (df -h)
a. du util to see exact usage
b. “df -i /opt/data/” to see free inodes
Check process usage with top (htop / atop). See CPU load + LA. Especially if it’s in pattern 15/10/2 - means high load recently (todo: find exact formulae)
Check free memory with free -m
Check disk load with iotop
Check exact process details with ps -ef
Check OS logs. Centos: /var/log/messages
Check opened files/sockets/devices with lsof util
Use strace util to track syscalls
Use telnet to check if TCP port is opened
Use sar to see historical CPU/Disk/Memory stats
Java services issues
Check CPU used for GC
Check Heap Usage
Check Java version
Check if multiple version of the same lib included into classpath
Take heapdump + threads dump + histo for investigation (todo: provide specific commands)
PostgreSQL issues
Check if IP addresses are allowed in pg_hba.conf
Docker issues
Check if kernel option for nat enabled
Check if userid inside docker app is allowed to rite/read to host disk