Search in sources :

Example 1 with TJvmGcType

use of com.navercorp.pinpoint.thrift.dto.TJvmGcType in project pinpoint by naver.

the class AgentInfoSender method createTJvmInfo.

private TJvmInfo createTJvmInfo() {
    TJvmInfo tJvmInfo = new TJvmInfo();
    tJvmInfo.setVmVersion(this.jvmInformation.getJvmVersion());
    TJvmGcType gcType = TJvmGcType.findByValue(this.jvmInformation.getGcTypeCode());
    if (gcType == null) {
        gcType = TJvmGcType.UNKNOWN;
    }
    tJvmInfo.setGcType(gcType);
    return tJvmInfo;
}
Also used : TJvmInfo(com.navercorp.pinpoint.thrift.dto.TJvmInfo) TJvmGcType(com.navercorp.pinpoint.thrift.dto.TJvmGcType)

Aggregations

TJvmGcType (com.navercorp.pinpoint.thrift.dto.TJvmGcType)1 TJvmInfo (com.navercorp.pinpoint.thrift.dto.TJvmInfo)1