当前位置: 首页>>代码示例>>Java>>正文


Java OutputRecord.getMetricNames方法代码示例

本文整理汇总了Java中org.apache.hadoop.metrics.spi.OutputRecord.getMetricNames方法的典型用法代码示例。如果您正苦于以下问题:Java OutputRecord.getMetricNames方法的具体用法?Java OutputRecord.getMetricNames怎么用?Java OutputRecord.getMetricNames使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.metrics.spi.OutputRecord的用法示例。


在下文中一共展示了OutputRecord.getMetricNames方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
@Override
public void emitRecord(String contextName, String recordName,
    OutputRecord outRec) {
  writer.print(iso8601());
  writer.print(" ");
  writer.print(contextName);
  writer.print(".");
  writer.print(recordName);
  String separator = ": ";
  for (String tagName : outRec.getTagNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(tagName);
    writer.print("=");
    writer.print(outRec.getTag(tagName));
  }
  for (String metricName : outRec.getMetricNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(metricName);
    writer.print("=");
    writer.print(outRec.getMetric(metricName));
  }
  writer.println();
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:26,代码来源:TimeStampingFileContext.java

示例2: logMetrics

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
private static void logMetrics(ThriftMetrics metrics) throws Exception {
  if (LOG.isDebugEnabled()) {
    return;
  }
  MetricsContext context = MetricsUtil.getContext( 
      ThriftMetrics.CONTEXT_NAME); 
  metrics.doUpdates(context); 
  for (String key : context.getAllRecords().keySet()) {
    for (OutputRecord record : context.getAllRecords().get(key)) {
      for (String name : record.getMetricNames()) {
        LOG.debug("metrics:" + name + " value:" +
            record.getMetric(name).intValue());
      }
    }
  }
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:17,代码来源:TestThriftHBaseServiceHandler.java

示例3: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
/**
 * Emits a metrics record to a file.
 */
@InterfaceAudience.Private
public void emitRecord(String contextName, String recordName, OutputRecord outRec) {
  writer.print(contextName);
  writer.print(".");
  writer.print(recordName);
  String separator = ": ";
  for (String tagName : outRec.getTagNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(tagName);
    writer.print("=");
    writer.print(outRec.getTag(tagName));
  }
  for (String metricName : outRec.getMetricNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(metricName);
    writer.print("=");
    writer.print(outRec.getMetric(metricName));
  }
  writer.println();
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:26,代码来源:FileContext.java

示例4: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
public void emitRecord(String contextName, String recordName,
  OutputRecord outRec) 
throws IOException {
  // Setup so that the records have the proper leader names so they are
  // unambiguous at the ganglia level, and this prevents a lot of rework
  StringBuilder sb = new StringBuilder();
  sb.append(contextName);
  sb.append('.');
  sb.append(recordName);
  sb.append('.');
  int sbBaseLen = sb.length();

  // emit each metric in turn
  for (String metricName : outRec.getMetricNames()) {
    Object metric = outRec.getMetric(metricName);
    String type = typeTable.get(metric.getClass());
    if (type != null) {
      sb.append(metricName);
      emitMetric(sb.toString(), type, metric.toString());
      sb.setLength(sbBaseLen);
    } else {
      LOG.warn("Unknown metrics type: " + metric.getClass());
    }
  }
}
 
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:26,代码来源:GangliaContext.java

示例5: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
@InterfaceAudience.Private
public void emitRecord(String contextName, String recordName,
  OutputRecord outRec) 
throws IOException {
  // Setup so that the records have the proper leader names so they are
  // unambiguous at the ganglia level, and this prevents a lot of rework
  StringBuilder sb = new StringBuilder();
  sb.append(contextName);
  sb.append('.');
  sb.append(recordName);
  sb.append('.');
  int sbBaseLen = sb.length();

  // emit each metric in turn
  for (String metricName : outRec.getMetricNames()) {
    Object metric = outRec.getMetric(metricName);
    String type = typeTable.get(metric.getClass());
    if (type != null) {
      sb.append(metricName);
      emitMetric(sb.toString(), type, metric.toString());
      sb.setLength(sbBaseLen);
    } else {
      LOG.warn("Unknown metrics type: " + metric.getClass());
    }
  }
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre,代码行数:27,代码来源:GangliaContext.java

示例6: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
/**
 * Emits a metrics record to a file.
 */
public void emitRecord(String contextName, String recordName, OutputRecord outRec) {
  writer.print(contextName);
  writer.print(".");
  writer.print(recordName);
  String separator = ": ";
  for (String tagName : outRec.getTagNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(tagName);
    writer.print("=");
    writer.print(outRec.getTag(tagName));
  }
  for (String metricName : outRec.getMetricNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(metricName);
    writer.print("=");
    writer.print(outRec.getMetric(metricName));
  }
  writer.println();
}
 
开发者ID:thisisvoa,项目名称:hadoop-0.20,代码行数:25,代码来源:FileContext.java

示例7: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
@Override
@InterfaceAudience.Private
public void emitRecord(String contextName, String recordName,
  OutputRecord outRec) 
throws IOException {
  // Setup so that the records have the proper leader names so they are
  // unambiguous at the ganglia level, and this prevents a lot of rework
  StringBuilder sb = new StringBuilder();
  sb.append(contextName);
  sb.append('.');

  if (contextName.equals("jvm") && outRec.getTag("processName") != null) {
    sb.append(outRec.getTag("processName"));
    sb.append('.');
  }

  sb.append(recordName);
  sb.append('.');
  int sbBaseLen = sb.length();

  // emit each metric in turn
  for (String metricName : outRec.getMetricNames()) {
    Object metric = outRec.getMetric(metricName);
    String type = typeTable.get(metric.getClass());
    if (type != null) {
      sb.append(metricName);
      emitMetric(sb.toString(), type, metric.toString());
      sb.setLength(sbBaseLen);
    } else {
      LOG.warn("Unknown metrics type: " + metric.getClass());
    }
  }
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:34,代码来源:GangliaContext.java

示例8: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
@Override
protected void emitRecord(String contextName, String recordName,
    OutputRecord outputRecord) throws IOException {
  for (String name : outputRecord.getMetricNames()) {
    Number val = outputRecord.getMetric(name);
    if (val != null && val.intValue() > 0) {
      METRICS.put(name, Boolean.TRUE);
      LOG.debug("Set metric "+name+" to "+val);
    }
  }
}
 
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:12,代码来源:TestRpcMetrics.java

示例9: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
@InterfaceAudience.Private
public void emitRecord(String contextName, String recordName,
  OutputRecord outRec) 
throws IOException {
  // Setup so that the records have the proper leader names so they are
  // unambiguous at the ganglia level, and this prevents a lot of rework
  StringBuilder sb = new StringBuilder();
  sb.append(contextName);
  sb.append('.');

  if (contextName.equals("jvm") && outRec.getTag("processName") != null) {
    sb.append(outRec.getTag("processName"));
    sb.append('.');
  }

  sb.append(recordName);
  sb.append('.');
  int sbBaseLen = sb.length();

  // emit each metric in turn
  for (String metricName : outRec.getMetricNames()) {
    Object metric = outRec.getMetric(metricName);
    String type = typeTable.get(metric.getClass());
    if (type != null) {
      sb.append(metricName);
      emitMetric(sb.toString(), type, metric.toString());
      sb.setLength(sbBaseLen);
    } else {
      LOG.warn("Unknown metrics type: " + metric.getClass());
    }
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:33,代码来源:GangliaContext.java

示例10: processMetricsRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
public void processMetricsRecord(OutputRecord outRec) {

    for (String metricName : outRec.getMetricNames()) {
      Number metricValue = outRec.getMetric(metricName);
      metrics.put(metricName, metricValue);
    }
  }
 
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:8,代码来源:JMXContextMBean.java

示例11: emitRecord

import org.apache.hadoop.metrics.spi.OutputRecord; //导入方法依赖的package包/类
/**
 * Emits a metrics record to a file.
 */
public void emitRecord(String contextName, String recordName, OutputRecord outRec) 
  throws IOException
{
  Calendar currentDate = Calendar.getInstance();
  if (fileName != null) {
    if (currentDate.get(Calendar.DAY_OF_MONTH) != lastRecordDate.get(Calendar.DAY_OF_MONTH)) {
      // rotate to a new context file
      file = new File(getFullFileName(currentDate));
      
      if (writer != null)
        writer.close();
      writer = new PrintWriter(new FileWriter(file, true));
    }
  }
  writer.print(recordDateFormat.format(currentDate.getTime()));
  writer.print(" ");
  writer.print(contextName);
  writer.print(".");
  writer.print(recordName);
  String separator = ": ";
  for (String tagName : outRec.getTagNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(tagName);
    writer.print("=");
    writer.print(outRec.getTag(tagName));
  }
  for (String metricName : outRec.getMetricNames()) {
    writer.print(separator);
    separator = ", ";
    writer.print(metricName);
    writer.print("=");
    writer.print(outRec.getMetric(metricName));
  }
  writer.println();
  lastRecordDate = currentDate;
}
 
开发者ID:rhli,项目名称:hadoop-EAR,代码行数:41,代码来源:FileContext.java


注:本文中的org.apache.hadoop.metrics.spi.OutputRecord.getMetricNames方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。