Package org.apache.hadoop.thriftfs.api

Examples of org.apache.hadoop.thriftfs.api.MetricsContext


    }
  }

  private MetricsContext metricsContextToThrift(
    org.apache.hadoop.metrics.MetricsContext ctx) {
    MetricsContext tCtx = new MetricsContext();
    tCtx.name = ctx.getContextName();
    tCtx.isMonitoring = ctx.isMonitoring();
    tCtx.period = ctx.getPeriod();
    tCtx.records = new HashMap<String, List<MetricsRecord>>();
View Full Code Here

TOP

Related Classes of org.apache.hadoop.thriftfs.api.MetricsContext

Copyright © 2018 www.massapicom. 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.