mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 08:46:22 +10:00
[강운덕] [LUCYSUS-1744] Span 데이터 구조를 api 호출 방식으로 변경하기 위해서 start end time위주로 변경함.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@874 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -1,15 +1,22 @@
|
||||
package com.profiler.context;
|
||||
|
||||
public enum Annotation {
|
||||
ClientSend("CS"), ClientRecv("CR"), ServerSend("SS"), ServerRecv("SR");
|
||||
@Deprecated
|
||||
ClientSend("CS"),
|
||||
@Deprecated
|
||||
ClientRecv("CR"),
|
||||
@Deprecated
|
||||
ServerSend("SS"),
|
||||
@Deprecated
|
||||
ServerRecv("SR");
|
||||
|
||||
private String code;
|
||||
private String code;
|
||||
|
||||
Annotation(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
Annotation(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user