public static void main()

in src/main/java/com/google/cloud/dfmetrics/MetricsExporter.java [29:44]


  public static void main(String[] argv) throws IllegalAccessException, IOException {

    CommandLineArgs args = new CommandLineArgs();
    JCommander.newBuilder().addObject(args).build().parse(argv);

    LOG.info(
        "Supplied parameters: Command:{}, Config Path:{}, Output Type:{}, Output Location:{}",
        args.command,
        args.configFile,
        args.outputType,
        args.outputLocation);

    Command command = CommandFactory.create(args);
    command.initialize();
    command.run();
  }