trace-watch-dog

一灰灰blog约 390 字大约 1 分钟

trace-watch-dog

源码地址: trace-watch-dogopen in new window

用于记录项目中,某一个链路的执行耗时情况,同时也支持将链路中的某些同步调用,改成异步执行,从而提高整体的性能表现

迭代记录

系列教程

使用姿势

引入依赖,基于jitpack的如下

版本根据实际需要进行选择,当前最新版本 0.0.1

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

基础核心使用,可应用非Spring应用场景

<dependency>
    <groupId>com.github.liuyueyi.hhui-components</groupId>
    <artifactId>trace-watch-dog</artifactId>
    <version>0.0.1</version>
</dependency>

对于SpringBoot的应用场景下,可以引入下面的依赖,支持基于AOP的埋点方式

<dependency>
    <groupId>com.github.liuyueyi.hhui-components</groupId>
    <artifactId>trace-watch-dog-spring</artifactId>
    <version>0.0.1</version>
</dependency>
Loading...