path: util/aop/aop-dao/src/main/java/com/knubisoft/aop/dao/SlowSqlQueryExecutionAspect.java
SlowSqlQueryExecutionAspect has the same behavior as SlowHttpRequestProcessingAspect and SlowServiceExecutionAspect only difference is that it counts SQL query execution time.
SlowSqlQueryExecutionAspect annotated with @ConditionalOnExpression("${aop.dao.enabled:true}"), so to 'enable' this aspect you must set the property aop.dao.enabled within the application.yaml to true.
...