Package co.cask.cdap.app.metrics

Examples of co.cask.cdap.app.metrics.MapReduceMetrics


          scope, metricsCollectionService.getCollector(scope, getMetricContext(program), INSTANCE_ID));
      }
      // for user metrics.  type can be null if its not in a map or reduce task, but in the yarn container that
      // launches the mapred job.
      this.mapredMetrics = (type == null) ?
        null : new MapReduceMetrics(metricsCollectionService, getApplicationId(), getProgramName(), type);
    } else {
      this.systemMapperMetrics = null;
      this.systemReducerMetrics = null;
      this.systemMetrics = null;
      this.mapredMetrics = null;
View Full Code Here

TOP

Related Classes of co.cask.cdap.app.metrics.MapReduceMetrics

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.