Package org.apache.hadoop.hbase.metrics

Examples of org.apache.hadoop.hbase.metrics.MetricsRate


      }
    } else if (o instanceof MetricsNonTimeRate) {
        MetricsNonTimeRate metric = (MetricsNonTimeRate)o;
        return metric.getPreviousIntervalValue();
    } else if (o instanceof MetricsRate) {
        MetricsRate metric = (MetricsRate)o;
        return metric.getPreviousIntervalValue();
    } else {
        MetricsUtil.LOG.error("unknown metrics type: " + o.getClass().getName());
        throw new AttributeNotFoundException();
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.metrics.MetricsRate

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.