use of com.navercorp.pinpoint.common.server.bo.stat.AgentStatBo in project pinpoint by naver.
the class TFLoadedClassMapper method build.
@Override
public void build(TFAgentStatMapper.TFAgentStatBuilder builder) {
AgentStatBo agentStat = builder.getAgentStat();
List<LoadedClassBo> loadedClassList = agentStat.getLoadedClassBos();
builder.build(loadedClassList, this);
}
use of com.navercorp.pinpoint.common.server.bo.stat.AgentStatBo in project pinpoint by naver.
the class GrpcAgentStatBatchMapper method map.
public AgentStatBo map(final PAgentStatBatch agentStatBatch, final Header header) {
if (agentStatBatch == null) {
return null;
}
final String agentId = header.getAgentId();
final long startTimestamp = header.getAgentStartTime();
final AgentStatBo.Builder builder = new AgentStatBo.Builder(agentId, startTimestamp);
for (PAgentStat agentStat : agentStatBatch.getAgentStatList()) {
this.mapper.map(agentStat, builder);
}
return builder.build();
}
use of com.navercorp.pinpoint.common.server.bo.stat.AgentStatBo in project pinpoint by naver.
the class TFActiveTraceMapper method build.
@Override
public void build(TFAgentStatMapper.TFAgentStatBuilder builder) {
AgentStatBo agentStat = builder.getAgentStat();
List<ActiveTraceBo> activeTraceBoList = agentStat.getActiveTraceBos();
builder.build(activeTraceBoList, this);
}
use of com.navercorp.pinpoint.common.server.bo.stat.AgentStatBo in project pinpoint by naver.
the class TFDirectBufferMapper method build.
@Override
public void build(TFAgentStatMapper.TFAgentStatBuilder builder) {
AgentStatBo agentStat = builder.getAgentStat();
List<DirectBufferBo> directBufferList = agentStat.getDirectBufferBos();
builder.build(directBufferList, this);
}
use of com.navercorp.pinpoint.common.server.bo.stat.AgentStatBo in project pinpoint by naver.
the class TFResponseTimeMapper method build.
@Override
public void build(TFAgentStatMapper.TFAgentStatBuilder builder) {
AgentStatBo agentStat = builder.getAgentStat();
List<ResponseTimeBo> responseTimeList = agentStat.getResponseTimeBos();
builder.build(responseTimeList, this);
}
Aggregations