Retrieves the monitoring profiles in a cluster.
Collection<MonitoringProfileVO> getMonitoringProfiles() throws SUPAdminException; MonitoringProfileVO getMonitoringProfile(String name) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
Collection<MonitoringProfileVO> mpvos = supCluster
.getMonitoringProfiles();
MonitoringProfileVO mpvo = supCluster
.getMonitoringProfile("<monitoring configuration name>");
System.out.println(mpvo.getName());