Format comments.
This commit is contained in:
parent
ee65e0023d
commit
c9e90187cc
|
|
@ -9,15 +9,16 @@ import java.util.Map;
|
|||
import static com.a.eye.skywalking.util.TraceIdUtil.isIllegalTraceId;
|
||||
|
||||
/**
|
||||
* Ack span module <p> All fields in this class will be initialized by {@link
|
||||
* com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
|
||||
* Ack span module
|
||||
* <p>
|
||||
* All fields in this class will be initialized by {@link com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
|
||||
*/
|
||||
public class AckSpanModule {
|
||||
private String traceId;
|
||||
private String parentLevelId;
|
||||
private int levelId = 0;
|
||||
private long cost;
|
||||
private int routeKey;
|
||||
private int levelId;
|
||||
private long cost;
|
||||
private int routeKey;
|
||||
|
||||
private Map<String, String> tags;
|
||||
|
||||
|
|
|
|||
|
|
@ -9,15 +9,16 @@ import java.util.Map;
|
|||
import static com.a.eye.skywalking.util.TraceIdUtil.isIllegalTraceId;
|
||||
|
||||
/**
|
||||
* request span module <p> All fields in this class will be initialized by {@link
|
||||
* com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
|
||||
* request span module
|
||||
* <p>
|
||||
* All fields in this class will be initialized by {@link com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
|
||||
*/
|
||||
public class RequestSpanModule {
|
||||
private String traceId;
|
||||
private String parentLevelId;
|
||||
private int levelId;
|
||||
private long startTime;
|
||||
private int routeKey;
|
||||
private String traceId;
|
||||
private String parentLevelId;
|
||||
private int levelId;
|
||||
private long startTime;
|
||||
private int routeKey;
|
||||
private Map<String, String> tags;
|
||||
|
||||
public RequestSpan convertToGRPCModule() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue