public Object getAttribute(String name)
throws AttributeNotFoundException,
MBeanException, ReflectionException {
try {
Object val =
new LoadAverage(this.sigar.getLoadAverage()).toMap().get(name);
if (val == null) {
throw new AttributeNotFoundException(name);
}
return val;
} catch (SigarNotImplementedException e) {