arthas
服务端spring-boot
项目arthas
连接spring-boot
项目下载地址:进入
最新版本为:
3.6.3
java -jar arthas-tunnel-server-3.6.2-fatjar.jar
看到上面打印日志则表示启动成功。同时记录下如截图中的内容(登录密码)
arthas服务信息地址: http://localhost:8080/actuator/arthas
登录账号:
arthas交互平台地址: http://localhost:8080/
其中${arthas.version}
需使用最新版依赖版本号替换
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-spring-boot-starter</artifactId>
<version>${arthas.version}</version>
</dependency>
下面配置中arthas.agent-id
对应的值后面连接arthas-web
客户端需要
arthas.agent-id=springboot-arthas
arthas.tunnel-server=ws://127.0.0.1:7777/ws
查看服务agent
连接arthas
是否成功
地址:http://localhost:8080/actuator/arthas
{
"clientConnections": {
"CE76AUYU58ORZQYAQ12X": {
"host": "0:0:0:0:0:0:0:1",
"port": 9157
}
},
"version": "3.6.3",
"properties": {
"server": {
"host": "0.0.0.0",
"port": 7777,
"ssl": false,
"path": "/ws",
"clientConnectHost": "192.168.9.119"
},
"embeddedRedis": null,
"enableDetailPages": true,
"enableIframeSupport": true
},
"agents": {
"springboot-arthas": {
"host": "127.0.0.1",
"port": 8993,
"arthasVersion": "3.6.3"
}
}
}
页面json
数据中agents
对应的value
就是当前连接到arthas
的java
服务
地址:http://localhost:8080
接下来就可以愉快地使用arthas
啦~