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

网格计算

开发平台:

Java

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