<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@include file="/commons/include/html_doctype.html" %> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="f" uri="http://www.jee-soft.cn/functions"%> <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> Druid SQL执行状态监控列表 <%@include file="/commons/include/get.jsp"%>
SQL执行监控
SQL 执行次数 总执行时间(毫秒) 平均执行时间(毫秒) 最大执行时间(毫秒) 在事务中执行次数 错误次数 影响记录数 获取记录数 正在运行数 并发数 管理
${fn:substring(sqlStat['SQL'],0,25)}${fn:length(sqlStat['SQL'])>35?"...":"" } ${sqlStat['ExecuteCount'] } ${sqlStat['TotalTime'] } ${sqlStat['AverageTime'] } ${sqlStat['MaxTimespan'] } ${sqlStat['InTransactionCount'] } ${sqlStat['ErrorCount'] } ${sqlStat['EffectedRowCount'] } ${sqlStat['FetchRowCount'] } ${sqlStat['RunningCount'] } ${sqlStat['ConcurrentMax'] } 明细