其他
SpringBoot整合阿里开源性能监控神器Arthas
点击蓝字
关注我们
前言
Arthas是阿里开源的性能分析神器,可以排查线上线下的一些问题,如何整合到我们的项目中呢,也比较简单。今天就将Arthas整合SpringBoot项目中。
1.创建SpringBoot项目
pom依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-spring-boot-starter</artifactId>
<version>3.3.6</version>
</dependency>
2.添加配置
server.port=8081
arthas.ip=127.0.0.1
arthas.agent-id=arthas_fire
arthas.tunnel-server=ws://127.0.0.1:7777/ws
3.启动项目
看到Arthas agent已启动,说明监控成功。
4.进入Arthas
浏览器访问:http://localhost:8563/5.总结
没错,就是这样简单,这样就可以监控我们的项目啦,关于Arthas如何使用推荐阅读-阿里巴巴开源性能监控神器Arthas
THE END
推荐阅读
SpringBoot 中如何正确的在异步线程中使用request
点赞+在看 ,关注公众号回复“666”领取福利