status.setName(component.getName());
status.setUri(service.getBindings().get(0).getURI());
try {
String serviceName = component.getName() + "/" + service.getName();
Manageable serviceInstance = node.getService(Manageable.class, serviceName);
Timer t = new Timer();
serviceInstance.isAlive();
status.setExecution(t.elapsed(TimeUnit.MILLISECONDS));
if(status.getExecution() < warningThreshold) {
status.setStatus(Status.OK);
}else if(status.getExecution() > warningThreshold) {