spring-boot-data-source-decorator
spring-boot-data-source-decorator copied to clipboard
Spring Boot integration with p6spy, datasource-proxy, flexy-pool and spring-cloud-sleuth
Time display is not normal  Originally, p6spy was formatted as follows, Not sure how to implement based on this plugin 
Current implementation of decoratpr hard-codes timeunit as seconds (in ProxyDataSourceBuilderConfigurer) I want time-unit to be milliseconds (so that to log queries slower than 500 ms, for instance) The only way...
NOT A BUG! When I run endpoints from SampleController or when I run tests, the `datasource-proxy-sample` module is not producing any logs into console. My first thought was there's something...
Hi, I am using the following dependencies for p6spy in my Spring boot project: ``` com.github.gavlyukovskiy p6spy-spring-boot-starter 1.7.1 com.github.gavlyukovskiy datasource-decorator-spring-boot-autoconfigure 1.7.1 p6spy p6spy 3.9.1 ``` Related property values in `application.properties`...
Bumps `flexy-pool` from 2.2.3 to 3.0.0. Updates `com.vladmihalcea.flexy-pool:flexy-pool-core` from 2.2.3 to 3.0.0 Commits 1e01c6d [maven-release-plugin] prepare release flexy-pool-parent-3.0.0 c3d761d Add support for Flexy Pool 3 #73 d38c643 Amended dead link...
Even though `application.yml` has this: ```yaml decorator: datasource: enabled: false ``` We still see that datasource-proxy is decorating the datasource in a stacktrace, is this expected ? ``` at jdk.internal.reflect.GeneratedMethodAccessor268.invoke(Unknown...
I’m using `p6spy-spring-boot-starter` in my Spring Boot application to analyze MySQL queries. I’ve added the following dependencies in my pom.xml: com.github.gavlyukovskiy p6spy-spring-boot-starter 1.9.1 mysql mysql-connector-java 8.0.26 In my `application.properties`, I’ve...
## ENV jdk21 和Springboot 3.4.5 ### dependencies ```xml com.github.gavlyukovskiy p6spy-spring-boot-starter 1.11.0 org.springframework.boot spring-boot-starter-quartz 3.4.5 ``` ### application.yaml ```yml decorator: datasource: p6spy: enable-logging: true log-format: "[executionTime]:%(executionTime) ms [sql]:%(sqlSingleLine)\n" log-filter: pattern: ^(?!.*(QRTZ_|\[sql\]:\s*$)).+$...
Hi, I noticed some issues trying to configure the logging of slow-queries in our project. Please have a look. Spring Boot: v3.3.2 datasource-proxy-spring-boot-starter: 1.11.0 With the above config, I got...