houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
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
package com.iailab.framework.common.util.monitor;
 
import org.apache.skywalking.apm.toolkit.trace.TraceContext;
 
/**
 * 链路追踪工具类
 *
 * 考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 util 包下
 *
 * @author iailab
 */
public class TracerUtils {
 
    /**
     * 私有化构造方法
     */
    private TracerUtils() {
    }
 
    /**
     * 获得链路追踪编号,直接返回 SkyWalking 的 TraceId。
     * 如果不存在的话为空字符串!!!
     *
     * @return 链路追踪编号
     */
    public static String getTraceId() {
        return TraceContext.traceId();
    }
 
}