潘志宝
2024-12-12 3374d19db03cce97572c3a294f137d1ea70b307f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iailab.framework.tracer.core.annotation;
 
import java.lang.annotation.*;
 
/**
 * 打印业务编号 / 业务类型注解
 *
 * 使用时,需要设置 SkyWalking OAP Server 的 application.yaml 配置文件,修改 SW_SEARCHABLE_TAG_KEYS 配置项,
 * 增加 biz.type 和 biz.id 两值,然后重启 SkyWalking OAP Server 服务器。
 *
 * @author 麻薯
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface BizTrace {
 
    /**
     * 业务编号 tag 名
     */
    String ID_TAG = "biz.id";
    /**
     * 业务类型 tag 名
     */
    String TYPE_TAG = "biz.type";
 
    /**
     * @return 操作名
     */
    String operationName() default "";
 
    /**
     * @return 业务编号
     */
    String id();
 
    /**
     * @return 业务类型
     */
    String type();
 
}