91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么獲取線程狀態及堆棧信息

發布時間:2021-08-24 21:58:48 來源:億速云 閱讀:951 作者:chen 欄目:大數據

本篇內容介紹了“Java怎么獲取線程狀態及堆棧信息”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

基本概念

出現內存泄漏或者運行緩慢場景,有時候無法直接從業務日志看出問題時候,需要分析jvm內存和線程堆棧

線程堆棧信息主要記錄jvm線程在某時刻線程執行情況,分析線程狀態可以跟蹤到程序出問題的地方

內存堆棧信息主要記錄jvm堆中在某時刻對象使用情況,主要用于跟蹤是哪個對象占用了太多的空間,從而跟蹤導致內存泄漏的地方

跟蹤線程信息

查看當前線程數量

actuator

1.x

http://host:port/metrics/threads //當前進程的線程數
http://host:port/metrics/threads.daemon  //當前進程后臺駐留線程數
http://host:port/metrics/threads.peak  //當前進程線程數峰值

2.x

http://host:port/actuator/metrics/jvm.threads.daemon  //當前進程后臺駐留線程數
http://host:port/actuator/metrics/jvm.threads.live  //當前進程的線程數
http://host:port/actuator/metrics/jvm.threads.peak  //當前進程線程數峰值

hystrix 線程狀態

如果接入了turbine可以直接通過turbine查看整個集群狀態

Java怎么獲取線程狀態及堆棧信息

當集群較大的時候,單純想看hystrix線程池狀態,可以單獨從hystrix監控統計類里面獲取

http://host:port/sys/hystrix/threads

源碼如下:

import com.alibaba.fastjson.JSON;
import com.netflix.hystrix.HystrixThreadPoolMetrics;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.jmx.export.annotation.ManagedResource;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;
import java.util.stream.Collectors;

/**
 * @author yugj
 * @date 19/5/5 22:17.
 */
@RestController
@RequestMapping(path = "/sys/hystrix")
@ManagedResource(description = "hystrix Endpoint")
@EnableScheduling
public class HystrixThreadPoolEndpoint {

    private boolean showStats = false;

    private static final Logger log = LoggerFactory.getLogger(HystrixThreadPoolEndpoint.class);


    @GetMapping(value = "/threads")
    public List<HystrixThreadStats> threadStats() {

        return HystrixThreadPoolMetrics.getInstances().stream().map((m) -> {

            final HystrixThreadStats stats = new HystrixThreadStats();
            stats.poolName = m.getThreadPoolKey().name();
            stats.cumulativeExecuted = m.getCumulativeCountThreadsExecuted();
            stats.currentActiveCount = m.getCurrentActiveCount().intValue();
            stats.currentCompletedCount = m.getCurrentCompletedTaskCount().intValue();
            stats.currentCorePoolSize = m.getCurrentCorePoolSize().intValue();
            stats.currentLargestPoolSize = m.getCurrentLargestPoolSize().intValue();
            stats.currentMaxPoolSize = m.getCurrentMaximumPoolSize().intValue();
            stats.currentPoolSize = m.getCurrentPoolSize().intValue();
            stats.currentQueueSize = m.getCurrentQueueSize().intValue();
            stats.currentTaskCount = m.getCurrentTaskCount().intValue();

            return stats;
        }).collect(Collectors.toList());
    }

    @GetMapping(value = "/setShowStats")
    public String setShowStats(Boolean showStats) {

        if (showStats != null) {
            this.showStats = showStats;
        }

        return "this.show stats:" + this.showStats;
    }

    @Scheduled(fixedRate = 5000)
    public void showStats() {

        if (showStats) {
            List<HystrixThreadPoolEndpoint.HystrixThreadStats> statsList = threadStats();
            log.info("thread stats :{}", JSON.toJSONString(statsList));
        }
    }

    class HystrixThreadStats {
        private String poolName;
        private Long cumulativeExecuted;
        private Integer currentActiveCount;
        private Integer currentCompletedCount;
        private Integer currentCorePoolSize;
        private Integer currentLargestPoolSize;
        private Integer currentMaxPoolSize;
        private Integer currentPoolSize;
        private Integer currentQueueSize;
        private Integer currentTaskCount;

        public String getPoolName() {
            return poolName;
        }

        public void setPoolName(String poolName) {
            this.poolName = poolName;
        }

        public Long getCumulativeExecuted() {
            return cumulativeExecuted;
        }

        public void setCumulativeExecuted(Long cumulativeExecuted) {
            this.cumulativeExecuted = cumulativeExecuted;
        }

        public Integer getCurrentActiveCount() {
            return currentActiveCount;
        }

        public void setCurrentActiveCount(Integer currentActiveCount) {
            this.currentActiveCount = currentActiveCount;
        }

        public Integer getCurrentCompletedCount() {
            return currentCompletedCount;
        }

        public void setCurrentCompletedCount(Integer currentCompletedCount) {
            this.currentCompletedCount = currentCompletedCount;
        }

        public Integer getCurrentCorePoolSize() {
            return currentCorePoolSize;
        }

        public void setCurrentCorePoolSize(Integer currentCorePoolSize) {
            this.currentCorePoolSize = currentCorePoolSize;
        }

        public Integer getCurrentLargestPoolSize() {
            return currentLargestPoolSize;
        }

        public void setCurrentLargestPoolSize(Integer currentLargestPoolSize) {
            this.currentLargestPoolSize = currentLargestPoolSize;
        }

        public Integer getCurrentMaxPoolSize() {
            return currentMaxPoolSize;
        }

        public void setCurrentMaxPoolSize(Integer currentMaxPoolSize) {
            this.currentMaxPoolSize = currentMaxPoolSize;
        }

        public Integer getCurrentPoolSize() {
            return currentPoolSize;
        }

        public void setCurrentPoolSize(Integer currentPoolSize) {
            this.currentPoolSize = currentPoolSize;
        }

        public Integer getCurrentQueueSize() {
            return currentQueueSize;
        }

        public void setCurrentQueueSize(Integer currentQueueSize) {
            this.currentQueueSize = currentQueueSize;
        }

        public Integer getCurrentTaskCount() {
            return currentTaskCount;
        }

        public void setCurrentTaskCount(Integer currentTaskCount) {
            this.currentTaskCount = currentTaskCount;
        }
    }

}

linux

ps huH p {pid}|wc -l

jstack生成線程堆棧

當服務cup飆升或者出問題需要從主機層面定位時候,使用top -c 命令查看對應哪個進程占用了過高資源

Java怎么獲取線程狀態及堆棧信息

找到資源占用高的進程

明確需要定位的進程通過如下命令找到對應的進程id

ps aux|grep {application alias}

可以通過如下命令定位具體高load線程:

查詢進程具體哪個線程占用高load
top -Hp {進程pid}

thread id為十六進制格式轉十六進制值
printf %x {線程pid}

指定特定行數堆棧信息
jstack {進程id}|grep -A 200 {線程id}

接下來通過jstack導出對應的線程堆棧

jstack 對應參數如下

  • -m to print both java and native frames (mixed mode)

  • -l long listing. Prints additional information about locks

服務器線程相對較多,文件大小較大,一般不會考慮在服務器看,另外這樣查也會導致忽略了一些統計信息

通過如下命令導出文件,下載到本地查

jstack -l {pid} >> {dump-file-path}

docker環境涉及一些權限,需要進入docker執行,docker里面進程id根據實際情況,一般會聯系運維操作

“Java怎么獲取線程狀態及堆棧信息”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳东县| 东兰县| 馆陶县| 新泰市| 赤水市| 堆龙德庆县| 河北省| 佛学| 富源县| 钟山县| 无为县| 桦甸市| 甘肃省| 康定县| 乐东| 确山县| 沧源| 七台河市| 云南省| 天祝| 锦屏县| 中宁县| 谷城县| 错那县| 连山| 岳普湖县| 通辽市| 呼伦贝尔市| 横峰县| 宁陵县| 珠海市| 滨州市| 黑龙江省| 西藏| 永顺县| 霍邱县| 贡觉县| 巴东县| 互助| 乌审旗| 谢通门县|