Examples of dbCallCompleted()


Examples of org.stagemonitor.requestmonitor.RequestTrace.dbCallCompleted()

  @Override
  public void logSQL(int connectionId, String now, long elapsed, Category category, String prepared, String sql) {
    if (sql != null && !sql.isEmpty()) {
      RequestTrace request = RequestMonitor.getRequest();
      if (request != null) {
        request.dbCallCompleted(elapsed);
        trackDbMetrics(elapsed);
        addSqlToCallStack(elapsed, prepared, sql);
      }
    }
  }
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.