Examples of queryGraphFromDB()


Examples of com.dianping.cat.report.page.dependency.graph.TopologyGraphManager.queryGraphFromDB()

  public void build(String date) throws Exception {
    TopologyGraphManager manager = lookup(TopologyGraphManager.class);
    SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    try {
        TopologyGraph graph = manager.queryGraphFromDB(formate.parse(date).getTime());

        if (graph != null) {
          File file = new File("/tmp/" + date + ".txt");

          if (!file.exists()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.