use of org.apache.metron.common.cli.ConfigurationManager in project metron by apache.
the class ConfigurationFunctionsTest method pushConfigs.
private static void pushConfigs(String inputPath) throws Exception {
String[] args = new String[] { "-z", zookeeperUrl, "--mode", "PUSH", "--input_dir", inputPath };
ConfigurationManager manager = new ConfigurationManager();
manager.run(ConfigurationManager.ConfigurationOptions.parse(new PosixParser(), args));
}
Aggregations