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

网格计算

开发平台:

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;
  19. import java.net.InetAddress;
  20. import java.net.UnknownHostException;
  21. import org.apache.commons.logging.Log;
  22. import org.apache.commons.logging.LogFactory;
  23. /**
  24.  * Utility class to simplify creation and reporting of hadoop metrics.
  25.  *
  26.  * For examples of usage, see NameNodeMetrics.
  27.  * @see org.apache.hadoop.metrics.MetricsRecord
  28.  * @see org.apache.hadoop.metrics.MetricsContext
  29.  * @see org.apache.hadoop.metrics.ContextFactory
  30.  */
  31. public class MetricsUtil {
  32.     
  33.   public static final Log LOG =
  34.     LogFactory.getLog(MetricsUtil.class);
  35.   /**
  36.    * Don't allow creation of a new instance of Metrics
  37.    */
  38.   private MetricsUtil() {}
  39.     
  40.   public static MetricsContext getContext(String contextName) {
  41.     return getContext(contextName, contextName);
  42.   }
  43.   /**
  44.    * Utility method to return the named context.
  45.    * If the desired context cannot be created for any reason, the exception
  46.    * is logged, and a null context is returned.
  47.    */
  48.   public static MetricsContext getContext(String refName, String contextName) {
  49.     MetricsContext metricsContext;
  50.     try {
  51.       metricsContext =
  52.         ContextFactory.getFactory().getContext(refName, contextName);
  53.       if (!metricsContext.isMonitoring()) {
  54.         metricsContext.startMonitoring();
  55.       }
  56.     } catch (Exception ex) {
  57.       LOG.error("Unable to create metrics context " + contextName, ex);
  58.       metricsContext = ContextFactory.getNullContext(contextName);
  59.     }
  60.     return metricsContext;
  61.   }
  62.   /**
  63.    * Utility method to create and return new metrics record instance within the
  64.    * given context. This record is tagged with the host name.
  65.    *
  66.    * @param context the context
  67.    * @param recordName name of the record
  68.    * @return newly created metrics record
  69.    */
  70.   public static MetricsRecord createRecord(MetricsContext context, 
  71.                                            String recordName) 
  72.   {
  73.     MetricsRecord metricsRecord = context.createRecord(recordName);
  74.     metricsRecord.setTag("hostName", getHostName());
  75.     return metricsRecord;        
  76.   }
  77.     
  78.   /**
  79.    * Returns the host name.  If the host name is unobtainable, logs the
  80.    * exception and returns "unknown".
  81.    */
  82.   private static String getHostName() {
  83.     String hostName = null;
  84.     try {
  85.       hostName = InetAddress.getLocalHost().getHostName();
  86.     } 
  87.     catch (UnknownHostException ex) {
  88.       LOG.info("Unable to obtain hostName", ex);
  89.       hostName = "unknown";
  90.     }
  91.     return hostName;
  92.   }
  93. }