MetricsTimeVaryingInt.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.metrics.util;
  19. import org.apache.hadoop.metrics.MetricsRecord;
  20. import org.apache.hadoop.util.StringUtils;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. /**
  24.  * The MetricsTimeVaryingInt class is for a metric that naturally
  25.  * varies over time (e.g. number of files created). The metrics is accumulated
  26.  * over an interval (set in the metrics config file); the metrics is
  27.  *  published at the end of each interval and then 
  28.  * reset to zero. Hence the counter has the value in the current interval. 
  29.  * 
  30.  * Note if one wants a time associated with the metric then use
  31.  * @see org.apache.hadoop.metrics.util.MetricsTimeVaryingRate
  32.  *
  33.  */
  34. public class MetricsTimeVaryingInt extends MetricsBase {
  35.   private static final Log LOG =
  36.     LogFactory.getLog("org.apache.hadoop.metrics.util");
  37.   
  38.   private int currentValue;
  39.   private int previousIntervalValue;
  40.   
  41.   
  42.   /**
  43.    * Constructor - create a new metric
  44.    * @param nam the name of the metrics to be used to publish the metric
  45.    * @param registry - where the metrics object will be registered
  46.    * @param description - the description
  47.    */
  48.   public MetricsTimeVaryingInt(final String nam,
  49.                                final MetricsRegistry registry,
  50.                                final String description) {
  51.     super(nam, description);
  52.     currentValue = 0;
  53.     previousIntervalValue = 0;
  54.     registry.add(nam, this);
  55.   }
  56.   
  57.   /**
  58.    * Constructor - create a new metric
  59.    * @param nam the name of the metrics to be used to publish the metric
  60.    * @param registry - where the metrics object will be registered
  61.    * A description of {@link #NO_DESCRIPTION} is used
  62.    */
  63.   public MetricsTimeVaryingInt(final String nam, final MetricsRegistry registry) {
  64.     this(nam, registry, NO_DESCRIPTION);
  65.   }
  66.   
  67.   
  68.   /**
  69.    * Inc metrics for incr vlaue
  70.    * @param incr - number of operations
  71.    */
  72.   public synchronized void inc(final int incr) {
  73.     currentValue += incr;
  74.   }
  75.   
  76.   /**
  77.    * Inc metrics by one
  78.    */
  79.   public synchronized void inc() {
  80.     currentValue++;
  81.   }
  82.   private synchronized void intervalHeartBeat() {
  83.      previousIntervalValue = currentValue;
  84.      currentValue = 0;
  85.   }
  86.   
  87.   /**
  88.    * Push the delta  metrics to the mr.
  89.    * The delta is since the last push/interval.
  90.    * 
  91.    * Note this does NOT push to JMX
  92.    * (JMX gets the info via {@link #previousIntervalValue}
  93.    *
  94.    * @param mr
  95.    */
  96.   public synchronized void pushMetric(final MetricsRecord mr) {
  97.     intervalHeartBeat();
  98.     try {
  99.       mr.incrMetric(getName(), getPreviousIntervalValue());
  100.     } catch (Exception e) {
  101.       LOG.info("pushMetric failed for " + getName() + "n" +
  102.           StringUtils.stringifyException(e));
  103.     }
  104.   }
  105.   
  106.   
  107.   /**
  108.    * The Value at the Previous interval
  109.    * @return prev interval value
  110.    */
  111.   public synchronized int getPreviousIntervalValue() { 
  112.     return previousIntervalValue;
  113.   }
  114.   
  115.   /**
  116.    * The Value at the current interval
  117.    * @return prev interval value
  118.    */
  119.   public synchronized int getCurrentIntervalValue() { 
  120.     return currentValue;
  121.   } 
  122. }