spring-boot-data-source-decorator icon indicating copy to clipboard operation
spring-boot-data-source-decorator copied to clipboard

Spring Boot integration with p6spy, datasource-proxy, flexy-pool and spring-cloud-sleuth

Results 22 spring-boot-data-source-decorator issues
Sort by recently updated
recently updated
newest added
trafficstars

Time display is not normal ![image](https://github.com/gavlyukovskiy/spring-boot-data-source-decorator/assets/31852897/e2264b26-7737-4894-aa2f-42d7c9226046) Originally, p6spy was formatted as follows, Not sure how to implement based on this plugin ![image](https://github.com/gavlyukovskiy/spring-boot-data-source-decorator/assets/31852897/35f0deda-8328-43a2-aa1c-d828bde340a0)

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...

dependencies
java

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...