public TabularData getInstances() throws Exception {
List<Instance> allInstances = Arrays.asList(adminService.getInstances());
List<JmxInstance> instances = new ArrayList<JmxInstance>();
for (Instance instance : allInstances) {
instances.add(new JmxInstance(instance));
}
TabularData table = JmxInstance.tableFrom(instances);
return table;
}