use of com.linkedin.databus.client.pub.DatabusV3Registration in project databus by linkedin.
the class ClientStatsRequestProcessor method processInboundEventsRegistrationV3.
private void processInboundEventsRegistrationV3(DatabusRequest request) throws IOException, RequestProcessingException {
DatabusV3Registration reg = findV3Registration(request, INBOUND_EVENTS_REG_KEY_PREFIX);
writeJsonObjectToResponse(reg.getRelayEventStats().getTotalStats(), request);
}
use of com.linkedin.databus.client.pub.DatabusV3Registration in project databus by linkedin.
the class ClientStatsRequestProcessor method processInboundCallbacksRegistrationV3.
private void processInboundCallbacksRegistrationV3(DatabusRequest request) throws IOException, RequestProcessingException {
DatabusV3Registration reg = findV3Registration(request, INBOUND_CALLBACKS_REG_KEY_PREFIX);
writeJsonObjectToResponse(reg.getRelayCallbackStats(), request);
}
use of com.linkedin.databus.client.pub.DatabusV3Registration in project databus by linkedin.
the class ClientStatsRequestProcessor method processBootstrapCallbacksRegistrationV3.
private void processBootstrapCallbacksRegistrationV3(DatabusRequest request) throws IOException, RequestProcessingException {
DatabusV3Registration reg = findV3Registration(request, BOOTSTRAP_CALLBACKS_REG_KEY_PREFIX);
writeJsonObjectToResponse(reg.getBootstrapCallbackStats(), request);
}
use of com.linkedin.databus.client.pub.DatabusV3Registration in project databus by linkedin.
the class ClientStatsRequestProcessor method processUnifiedRegistrationV3.
private void processUnifiedRegistrationV3(DatabusRequest request) throws IOException, RequestProcessingException {
DatabusV3Registration reg = findV3Registration(request, UNIFIED_REG_KEY_PREFIX);
writeJsonObjectToResponse(reg.getUnifiedClientStats(), request);
}
Aggregations