Package com.etao.adhoc.metric

Examples of com.etao.adhoc.metric.MetricService


  private Map conf;
  private QueryService queryServer;
  private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  public UpdateService(String queryFrom) {
    conf = Utils.readStormConfig("adhoc.yaml");
    metricServer = new MetricService();
    if(queryFrom.equals("hive")){
      queryServer = new HiveQueryService(conf);
    } else if(queryFrom.equals("higo")){
      queryServer = new HigoQueryService(conf);
    } else {
View Full Code Here

TOP

Related Classes of com.etao.adhoc.metric.MetricService

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.