use of com.navercorp.pinpoint.common.buffer.FixedBuffer in project pinpoint by naver.
the class AgentLifeCycleMapper method createAgentLifeCycleBo.
private AgentLifeCycleBo createAgentLifeCycleBo(Cell valueCell) {
if (valueCell == null) {
return null;
}
byte[] value = CellUtil.cloneValue(valueCell);
final Buffer buffer = new FixedBuffer(value);
final int version = buffer.readInt();
if (version == 0) {
final String agentId = buffer.readPrefixedString();
final long startTimestamp = buffer.readLong();
final long eventTimestamp = buffer.readLong();
final long eventIdentifier = buffer.readLong();
final AgentLifeCycleState agentLifeCycleState = AgentLifeCycleState.getStateByCode(buffer.readShort());
final AgentLifeCycleBo agentLifeCycleBo = new AgentLifeCycleBo(agentId, startTimestamp, eventTimestamp, eventIdentifier, agentLifeCycleState);
return agentLifeCycleBo;
}
return null;
}
use of com.navercorp.pinpoint.common.buffer.FixedBuffer in project pinpoint by naver.
the class MapStatisticsCalleeMapper method mapRow.
@Override
public LinkDataMap mapRow(Result result, int rowNum) throws Exception {
if (result.isEmpty()) {
return new LinkDataMap();
}
logger.debug("mapRow:{}", rowNum);
final byte[] rowKey = getOriginalKey(result.getRow());
final Buffer row = new FixedBuffer(rowKey);
final Application calleeApplication = readCalleeApplication(row);
final long timestamp = TimeUtils.recoveryTimeMillis(row.readLong());
final LinkDataMap linkDataMap = new LinkDataMap();
for (Cell cell : result.rawCells()) {
final byte[] qualifier = CellUtil.cloneQualifier(cell);
final Application callerApplication = readCallerApplication(qualifier, calleeApplication.getServiceType());
if (filter.filter(callerApplication)) {
continue;
}
long requestCount = Bytes.toLong(cell.getValueArray(), cell.getValueOffset());
short histogramSlot = ApplicationMapStatisticsUtils.getHistogramSlotFromColumnName(qualifier);
String callerHost = ApplicationMapStatisticsUtils.getHost(qualifier);
// nodes, they would not have reached here in the first place.
if (calleeApplication.getServiceType().isQueue()) {
callerHost = StringUtils.defaultString(callerHost);
}
boolean isError = histogramSlot == (short) -1;
if (logger.isDebugEnabled()) {
logger.debug(" Fetched Callee. {} callerHost:{} -> {} (slot:{}/{}), ", callerApplication, callerHost, calleeApplication, histogramSlot, requestCount);
}
final short slotTime = (isError) ? (short) -1 : histogramSlot;
linkDataMap.addLinkData(callerApplication, callerApplication.getName(), calleeApplication, callerHost, timestamp, slotTime, requestCount);
if (logger.isDebugEnabled()) {
logger.debug(" Fetched Callee. statistics:{}", linkDataMap);
}
}
return linkDataMap;
}
use of com.navercorp.pinpoint.common.buffer.FixedBuffer in project pinpoint by naver.
the class MapStatisticsCallerMapper method mapRow.
@Override
public LinkDataMap mapRow(Result result, int rowNum) throws Exception {
if (result.isEmpty()) {
return new LinkDataMap();
}
logger.debug("mapRow:{}", rowNum);
final byte[] rowKey = getOriginalKey(result.getRow());
final Buffer row = new FixedBuffer(rowKey);
final Application caller = readCallerApplication(row);
final long timestamp = TimeUtils.recoveryTimeMillis(row.readLong());
// key is destApplicationName.
final LinkDataMap linkDataMap = new LinkDataMap();
for (Cell cell : result.rawCells()) {
final Buffer buffer = new OffsetFixedBuffer(cell.getQualifierArray(), cell.getQualifierOffset(), cell.getQualifierLength());
final Application callee = readCalleeApplication(buffer);
if (filter.filter(callee)) {
continue;
}
String calleeHost = buffer.readPrefixedString();
short histogramSlot = buffer.readShort();
boolean isError = histogramSlot == (short) -1;
String callerAgentId = buffer.readPrefixedString();
long requestCount = getValueToLong(cell);
if (logger.isDebugEnabled()) {
logger.debug(" Fetched Caller.(New) {} {} -> {} (slot:{}/{}) calleeHost:{}", caller, callerAgentId, callee, histogramSlot, requestCount, calleeHost);
}
final short slotTime = (isError) ? (short) -1 : histogramSlot;
if (StringUtils.isEmpty(calleeHost)) {
calleeHost = callee.getName();
}
linkDataMap.addLinkData(caller, callerAgentId, callee, calleeHost, timestamp, slotTime, requestCount);
}
return linkDataMap;
}
use of com.navercorp.pinpoint.common.buffer.FixedBuffer in project pinpoint by naver.
the class AgentEventMapper method mapRow.
@Override
public List<AgentEventBo> mapRow(Result result, int rowNum) throws Exception {
if (result.isEmpty()) {
return Collections.emptyList();
}
List<AgentEventBo> agentEvents = new ArrayList<>();
for (Cell cell : result.rawCells()) {
final int code = CellUtils.qualifierToInt(cell);
final AgentEventType eventType = AgentEventType.getTypeByCode(code);
if (eventType == null) {
continue;
}
byte[] value = CellUtil.cloneValue(cell);
final Buffer buffer = new FixedBuffer(value);
final int version = buffer.readInt();
switch(version) {
case 0:
case 1:
final String agentId = buffer.readPrefixedString();
final long startTimestamp = buffer.readLong();
final long eventTimestamp = buffer.readLong();
final byte[] eventMessage = buffer.readPrefixedBytes();
final AgentEventBo agentEvent = new AgentEventBo(version, agentId, startTimestamp, eventTimestamp, eventType);
agentEvent.setEventBody(eventMessage);
agentEvents.add(agentEvent);
break;
default:
break;
}
}
return agentEvents;
}
Aggregations