src/main/java/com/google/cloud/dfmetrics/commands/MetricsFetcherCommand.java [92:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Map<String, Double> metrics =
          metricsManager.getMetrics(jobInfo.jobType(), jobConfig.resourcePricing());

      LOG.info("Storing the results in the output store..");
      this.outputStore.load(jobInfo, metrics);

      LOG.info("Completed all operations");
    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  /** Creates Job Config from the metrics fetcher config. */
  @VisibleForTesting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/dfmetrics/commands/TemplateLauncherCommand.java [169:183]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      Map<String, Double> metrics =
          metricsManager.getMetrics(jobInfo.jobType(), jobConfig.resourcePricing());

      LOG.info("Storing the results in the output store..");
      this.outputStore.load(jobInfo, metrics);

      LOG.info("Completed all operations");

    } catch (IOException e) {
      throw new RuntimeException(e);
    }
  }

  /** Parses the supplied configuration file and creates job config. */
  @VisibleForTesting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



