Package org.hyperic.sigar

Examples of org.hyperic.sigar.LoadAverage


    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) {
View Full Code Here

TOP

Related Classes of org.hyperic.sigar.LoadAverage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.