Package com.dianping.cat.report.task.notify.render

Examples of com.dianping.cat.report.task.notify.render.TransactionRender


    return sw.toString();
  }

  @Override
  public String renderReport(TransactionReport report) {
    TransactionRender entity = new TransactionRender(report.getStartTime(), report.getDomain(), 1, m_ip);
    entity.visitTransactionReport(report);

    Map<Object, Object> root = entity.getRenderResult();
    StringWriter sw = new StringWriter(5000);

    try {
      Template t = m_configuration.getTemplate("transaction.ftl");
View Full Code Here

TOP

Related Classes of com.dianping.cat.report.task.notify.render.TransactionRender

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.