Examples of MetricMutableGaugeInt


Examples of org.apache.hadoop.metrics2.lib.MetricMutableGaugeInt

   * @param initValue of the metric
   * @return a new gauge object
   */
  public MetricMutableGaugeInt newGauge(String name, String description,
      int initValue) {
    MetricMutableGaugeInt ret = mf.newGauge(name, description, initValue);
    return addNewMetricIfAbsent(name, ret, MetricMutableGaugeInt.class);
  }
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.