String path = getPath();
path = path.replace("server-config","server");
Address address = new Address(path);
address.add("core-service","platform-mbean");
address.add("type","runtime");
Operation op = new ReadAttribute(address,"start-time");
Result res = getASConnection().execute(op);
if (res.isSuccess()) {
Long startTime= (Long) res.getResult();
MeasurementDataTrait data = new MeasurementDataTrait(request,new Date(startTime).toString());