Java CPU性能分析工具代碼實(shí)例
這篇文章主要介紹了Java CPU性能分析工具代碼實(shí)例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
背景
有處理過(guò)生產(chǎn)問(wèn)題的同學(xué)基本都能遇到系統(tǒng)忽然緩慢,CPU突然飆升,甚至整個(gè)應(yīng)用請(qǐng)求不可用。當(dāng)出現(xiàn)這種情況下,在不影響數(shù)據(jù)準(zhǔn)確性的前提下,我們應(yīng)該盡快導(dǎo)出jstack和內(nèi)存信息,然后重啟系統(tǒng),盡快回復(fù)系統(tǒng)的可用性,避免用戶(hù)體驗(yàn)過(guò)差。本文針對(duì)CPU飆升問(wèn)題,提供該問(wèn)題的排查思路,從而能夠快速定位到某線(xiàn)程甚至某快代碼導(dǎo)致CPU飆升,從而提供處理該問(wèn)題的思路。
排查過(guò)程
- 通過(guò)top命令查看cpu飆升的java進(jìn)程pid
- 通過(guò)ps -mp [pid] -o THREAD,tid,time查看該進(jìn)程下所擁有的線(xiàn)程及各個(gè)線(xiàn)程占用cpu的使用率,并且記錄CPU使用率過(guò)高的線(xiàn)程ID號(hào)
- 將線(xiàn)程ID號(hào)轉(zhuǎn)換為16進(jìn)程的數(shù)值記為tid_hex
- 使用jdk自帶jstack監(jiān)控命令
- 使用命令jstack [pid] | grep tid_hex -A100命令輸出該線(xiàn)程的堆棧信息
- 根據(jù)堆棧信息分析代碼。
通過(guò)以上步驟可以查找出導(dǎo)致cpu飆升的相關(guān)代碼位置,然后對(duì)代碼進(jìn)行code review即可。
工具封裝
以上步驟已經(jīng)封裝為腳本文件,通過(guò)以下腳本文件只需要指定進(jìn)程ID即pid即可導(dǎo)出默認(rèn)前5條導(dǎo)致CPU率過(guò)高的堆棧信息。
已上傳github : 點(diǎn)我進(jìn)入
./java-thread-top.sh -p pid
#!/bin/bash
# @Function
# Find out the highest cpu consumed threads of java processes, and print the stack of these threads.
# @github https://github.com/cjunn/script_tool/
# @author cjunn
# @date Sun Jan 12 2020 21:08:58 GMT+0800
#
pid='';
count=5;
function usage(){
readonly PROG="`basename $0`"
cat <<EOF
Usage: ${PROG} [OPTION]
Find out the highest cpu consumed threads of java processes,
and print the stack of these threads.
Example:
${PROG} -p <pid> -c 5 # show top 5 busy java threads info
Output control:
-p, --pid <java pid> find out the highest cpu consumed threads from
the specified java process.
default from all java process.
-c, --count <num> set the thread count to show, default is 5.
Miscellaneous:
-h, --help display this help and exit.
EOF
}
#1.Collect script parameters
#2.Check whether PID exists
if [ $# -gt 0 ];
then
while true; do
case "$1" in
-c|--count)
count="$2"
shift 2
;;
-p|--pid)
pid="$2"
shift 2
;;
-h|--help)
usage
exit 0;
;;
--)
shift
break
;;
*)
shift
if [ -z "$1" ] ; then
break
fi
;;
esac
done
fi
if [ ! -n "$pid" ] ;then
echo "error: -p is empty"
exit 1;
fi
function worker(){
#1.Query all threads according to PID.
#2.Delete header and first line information.
#3.According to the second column of CPU to sort, reverse display.
#4.Delete the count + 1 to last column based on the count value.
#5.Get CPU utilization, TID value, thread used time, and assign them to CPU, TID, time respectively.
#6.Perform hex conversion on TID.
#7.Use JDK to monitor all threads of jstack output PID.
#8.Use awk to regularly query the thread information of tid_hex required.
#9.Display the stack information of count before thread busy.
local whilec=0;
ps -mp $pid -o THREAD,tid,time | sed '1,2d' | sort -k 2 -n -r |sed $[$count+1]',$d' | awk '{print $2,$8,$9}' | while read cpu tid time
do
tid_hex=$(printf "%x" $tid);
echo "====================== tid:${tid} tid_hex:${tid_hex} cpu:${cpu} time:${time} ======================";
jstack $pid | awk 'BEGIN {RS = "\n\n+";ORS = "\n\n"} /'${tid_hex}'/ {print $0}'
echo "";
whilec=$[$whilec+1];
done
if [ $whilec -eq 0 ] ; then
echo "error : thread not found, make sure pid exists.";
fi
}
worker
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
springboot+angular4前后端分離 跨域問(wèn)題解決詳解
這篇文章主要介紹了springboot+angular4前后端分離 跨域問(wèn)題解決詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-09-09
springboot項(xiàng)目idea熱部署的教程詳解
這篇文章主要介紹了springboot項(xiàng)目idea熱部署,本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-08-08
RabbitMQ實(shí)現(xiàn)Work Queue工作隊(duì)列的示例詳解
工作隊(duì)列(又稱(chēng)任務(wù)隊(duì)列)的主要思想是避免立即執(zhí)行資源密集型任務(wù),而不得不等待它完成。本篇文章將記錄和分享RabbitMQ工作隊(duì)列相關(guān)的知識(shí)點(diǎn),希望對(duì)大家有所幫助2023-01-01
Java開(kāi)發(fā)SpringBoot集成接口文檔實(shí)現(xiàn)示例
這篇文章主要為大家介紹了Java開(kāi)發(fā)SpringBoot如何集成接口文檔的實(shí)現(xiàn)示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步2021-10-10
java web中使用cookie記住用戶(hù)的賬號(hào)和密碼
這篇文章主要介紹了java web中使用cookie記住用戶(hù)的賬號(hào)和密碼的相關(guān)資料,需要的朋友可以參考下2017-01-01

