欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

JavaCPU性能分析工具代碼實例

這篇文章主要介紹了Java CPU性能分析工具代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

網(wǎng)站建設哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、小程序開發(fā)、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了紅河哈尼免費建站歡迎大家使用!

背景

有處理過生產(chǎn)問題的同學基本都能遇到系統(tǒng)忽然緩慢,CPU突然飆升,甚至整個應用請求不可用。當出現(xiàn)這種情況下,在不影響數(shù)據(jù)準確性的前提下,我們應該盡快導出jstack和內存信息,然后重啟系統(tǒng),盡快回復系統(tǒng)的可用性,避免用戶體驗過差。本文針對CPU飆升問題,提供該問題的排查思路,從而能夠快速定位到某線程甚至某快代碼導致CPU飆升,從而提供處理該問題的思路。

排查過程

  • 通過top命令查看cpu飆升的java進程pid
  • 通過ps -mp [pid] -o THREAD,tid,time查看該進程下所擁有的線程及各個線程占用cpu的使用率,并且記錄CPU使用率過高的線程ID號
  • 將線程ID號轉換為16進程的數(shù)值記為tid_hex
  • 使用jdk自帶jstack監(jiān)控命令
  • 使用命令jstack [pid] | grep tid_hex -A100命令輸出該線程的堆棧信息
  • 根據(jù)堆棧信息分析代碼。

通過以上步驟可以查找出導致cpu飆升的相關代碼位置,然后對代碼進行code review即可。

工具封裝

以上步驟已經(jīng)封裝為腳本文件,通過以下腳本文件只需要指定進程ID即pid即可導出默認前5條導致CPU率過高的堆棧信息。

已上傳github : 點我進入

./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

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)頁題目:JavaCPU性能分析工具代碼實例
文章位置:http://aaarwkj.com/article4/gjccoe.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供動態(tài)網(wǎng)站、網(wǎng)站建設品牌網(wǎng)站設計、、自適應網(wǎng)站、面包屑導航

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
日本丰满熟女毛茸茸的黑逼| 国产夫妻性生活视频播放| 久久日韩制服丝袜人妻| 97乱碰视频在线观看| 在线看电影亚洲一区| 蜜臀久久精品国产综合| 国产精品一区二区三区在线| 丁香色婷婷国产精品视频| 亚洲综合偷拍欧美一区色| 中文字幕人妻出轨一区二区 | 国产一区二区黄色在线| 亚洲av一区二区三区色多多| 97在线视频观看视频在线| 99麻豆久久久精品国产| 日韩国产传媒在线精品| 精品亚洲第一区二区免费在线 | 日韩激情小视频在线观看| 久久婷婷国产综合精品青草| 亚洲一区欧美日韩91| 久久精品一区二区三区不卡| 激情五月婷婷久久激情| 91嫩草国产在线观看| 99热这里66只有精品| 亚洲国产成人综合一区二区三区 | 欧美av一区二区三区四区| 久久国产精品av在线观看| 极品人妻少妇精品一区二区| 亚洲热久久国产经典视频| 国产精品自在线拍亚洲另类| 国产三级自拍视频在线观看网站| 日韩欧美麻豆不卡一区二区| 欧美日韩av在线一区二区| 欧美三级美国三级亚洲三级| 男人的天堂av最新版本| 欧美色精品人妻在线最新| 国产亚洲欧美日韩激情在线| av一区二区三区不卡在线看| 国内精品一区二区欧美| 久久一区二区视频在线观看| 亚洲精品二区在线播放| 欧美亚洲午夜精品久久久|