Package com.dianping.cat.core.dal

Examples of com.dianping.cat.core.dal.Graph


    String queryIP = "All".equals(ip) == true ? "all" : ip;
    List<Graph> graphs = new ArrayList<Graph>();

    for (long startLong = start.getTime(); startLong < end.getTime(); startLong = startLong + TimeHelper.ONE_HOUR) {
      try {
        Graph graph = m_graphDao.findSingalByDomainNameIpDuration(new Date(startLong), queryIP, domain,
              ProblemAnalyzer.ID, GraphEntity.READSET_FULL);
        graphs.add(graph);
      } catch (DalNotFoundException e) {
      } catch (Exception e) {
        Cat.logError(e);
View Full Code Here


        String ip) {
    String queryIP = "All".equals(ip) == true ? "all" : ip;
    List<Graph> events = new ArrayList<Graph>();
    for (long startLong = start.getTime(); startLong < end.getTime(); startLong = startLong + TimeHelper.ONE_HOUR) {
      try {
        Graph graph = m_graphDao.findSingalByDomainNameIpDuration(new Date(startLong), queryIP, domain,
              EventAnalyzer.ID, GraphEntity.READSET_FULL);
        events.add(graph);
      } catch (DalNotFoundException e) {
      } catch (Exception e) {
        Cat.logError(e);
View Full Code Here

TOP

Related Classes of com.dianping.cat.core.dal.Graph

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.