for (MeasurementScheduleRequest request: requests) {
if (request.getName().equals("startTime")) {
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();