Examples of MetricsRate


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
Copyright © 2018 www.massapi.com. 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.