CPU
top
1 | ps aux |grep java |
MEMORY
free
1 | free -m |
dmesg
If process is killed by the OS due to OOM, we can get logs from here.
1 | sudo dmesg | grep -i kill |
vmstat
Check memroy, cpu, io …
1 | vmstat 2 10 -t # 2 : interval, 10 : times |
DISK
df
1 | df -h |
1 | du -m /mnt | sort -rn | head -3 |
NETWORK
netstat
1 | netstat -nat | awk '{print $6}' | sort | uniq -c | sort -rn # check socket status |
JAVA PROCESS
jstack
Check status status of a java process
1 | sudo jstack -F 1423 # 1423 is process id |
jinfo
1 | sudo jinfo -flags 13474 |
jmap
check heap usage status of a java process
1 | sudo jmap -heap 13474 |
check what live objects takes up the memory
1 | jmap -histo:live 5409 # first execute GC once, then show the summary information |
create dump of the memory
1 | sudo jmap -dump:live,format=b,file=dump.hprof 9557 |
jstat
1 | sudo jstat -gc 13474 2000 10 |
jps
Check all java process information
1 | sudo jps -mlvV |
OTHERS
tail
1 | tail -100f server.log # Show last 100 lines and show new lines in realtime |
awk
1 | awk '{print $1,$2}' a.txt |
find
1 | find /tmp/ /user/ -name *.log |