首頁 > 軟體

SpringBoot整合java診斷工具Arthas解讀

2023-03-13 06:00:34

一、Arthas官方檔案

https://arthas.aliyun.com/doc/

二、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 ,則隨機telnet埠
  # 如果是防止一個機器上啟動多個 arthas埠衝突。可以設定為隨機埠,或者設定為 -1,並且通過tunnel server來使用arthas。
  # ~/logs/arthas/arthas.log (使用者目錄下面)裡可以找到具體埠紀錄檔
  telnetPort: -1
  httpPort: -1
  # 127.0.0.1只能本地存取,0.0.0.0則可網路存取,但是存在安全問題
  ip: 127.0.0.1
  appName: arthas_test
  # 預設情況下,會生成隨機ID,如果 arthas agent設定了 appName,則生成的agentId會帶上appName的字首。
  agent-id: hsehdfsfghhwertyfad
  # tunnel-server地址
  tunnel-server: ws://127.0.0.1:7777/ws

這裡建議agent_id提前設定好。後續的控制檯連線arthas需要使用。

3、下載arthas-tunnel-server

通過Arthas Tunnel Server/Client 來遠端管理/連線多個Agent

1. 下載arthas-tunnel-server-3.6.7-fatjar.jar
https://github.com/alibaba/arthas/releases
2. 執行
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.登入檢視註冊上來的應用
http://127.0.0.1:8080/actuator/arthas 登陸使用者名稱是arthas
密碼在arthas tunnel server的紀錄檔裡可以找到,比如:
Using generated security password: 6e00d3bd-e2b3-4147-b959-63854347cdc1

4、啟動Arthas Tunnel Server及spring專案

5、登入Arthas Tunnel Server

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

6、輸入命令進行測試

dashboard,當前系統的實時資料面板

其他命令列表檢視https://arthas.aliyun.com/doc/commands.html

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com