Open
Description
when i use JdbcEventListener
@OverRide
public void onAfterExecuteQuery(PreparedStatementInformation statementInformation,
long timeElapsedNanos, SQLException e) {
long cost = TimeUnit.NANOSECONDS.toMillis(timeElapsedNanos);
if (cost >= slowQueryThresholdInMill) {
log.warn("slow query is {} cost is {} ms", statementInformation.getSqlWithValues(),
cost);
}
statementInformation.incrementTimeElapsed(timeElapsedNanos);
super.onAfterExecuteQuery(statementInformation, timeElapsedNanos, e);
}
statementInformation.getSqlWithValues() can not print sql values
print sql:
select max(t0.date) from interface.stats t0 where t0.type = ?
Metadata
Metadata
Assignees
Labels
No labels