溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

SpringBoot整合java診斷工具Arthas怎么用

發(fā)布時(shí)間:2023-03-11 11:35:07 來(lái)源:億速云 閱讀:145 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了SpringBoot整合java診斷工具Arthas怎么用的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇SpringBoot整合java診斷工具Arthas怎么用文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

    springBoot整合方式

    1、pom文件引入

    <dependency>
        <groupId>com.taobao.arthas</groupId>
        <artifactId>arthas-spring-boot-starter</artifactId>
        <version>3.6.7</version>
    </dependency>

    2、yaml文件引入

    arthas:
      # telnetPort、httpPort為 -1 ,則不listen telnet端口,為 0 ,則隨機(jī)telnet端口
      # 如果是防止一個(gè)機(jī)器上啟動(dòng)多個(gè) arthas端口沖突??梢耘渲脼殡S機(jī)端口,或者配置為 -1,并且通過(guò)tunnel server來(lái)使用arthas。
      # ~/logs/arthas/arthas.log (用戶(hù)目錄下面)里可以找到具體端口日志
      telnetPort: -1
      httpPort: -1
      # 127.0.0.1只能本地訪問(wèn),0.0.0.0則可網(wǎng)絡(luò)訪問(wèn),但是存在安全問(wèn)題
      ip: 127.0.0.1
      appName: arthas_test
      # 默認(rèn)情況下,會(huì)生成隨機(jī)ID,如果 arthas agent配置了 appName,則生成的agentId會(huì)帶上appName的前綴。
      agent-id: hsehdfsfghhwertyfad
      # tunnel-server地址
      tunnel-server: ws://127.0.0.1:7777/ws

    這里建議agent_id提前配置好。后續(xù)的控制臺(tái)連接arthas需要使用。

    3、下載arthas-tunnel-server

    通過(guò)Arthas Tunnel Server/Client 來(lái)遠(yuǎn)程管理/連接多個(gè)Agent

    1. 下載arthas-tunnel-server-3.6.7-fatjar.jar
    https://github.com/alibaba/arthas/releases
    2. 運(yùn)行
    windows
    java -jar arthas-tunnel-server-3.6.7-fatjar.jar
    linux
    nohup java -jar arthas-tunnel-server-3.6.7-fatjar.jar > /dev/null 2>&1 &
    3.登錄查看注冊(cè)上來(lái)的應(yīng)用
    http://127.0.0.1:8080/actuator/arthas 登陸用戶(hù)名是arthas
    密碼在arthas tunnel server的日志里可以找到,比如:
    Using generated security password: 6e00d3bd-e2b3-4147-b959-63854347cdc1

    4、啟動(dòng)Arthas Tunnel Server及spring項(xiàng)目

    SpringBoot整合java診斷工具Arthas怎么用

    5、登錄Arthas Tunnel Server

    輸入地址:http://127.0.0.1:8080/并輸入agent_id,界面如下圖。

    SpringBoot整合java診斷工具Arthas怎么用

    6、輸入命令進(jìn)行測(cè)試

    dashboard,當(dāng)前系統(tǒng)的實(shí)時(shí)數(shù)據(jù)面板

    SpringBoot整合java診斷工具Arthas怎么用

    關(guān)于“SpringBoot整合java診斷工具Arthas怎么用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“SpringBoot整合java診斷工具Arthas怎么用”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

    向AI問(wèn)一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI