servicePerformanceNames = new HashSet<ObjectName>();
}
// Reduce the Set to Service Performance MBeans only
servicePerformanceNames.add(name);
// Create a proxy object for the Service Performance MBean
ServicePerformanceMBean perfMBeanProxy = (ServicePerformanceMBean) MBeanServerInvocationHandler
.newProxyInstance(mbsc, name, ServicePerformanceMBean.class, true);
// Extract the service name from the MBean name
int beginIndx = name.toString().indexOf(perfKey);
key = name.toString().substring(0, beginIndx);