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

hello im using 1.5.8 version. ![image](https://user-images.githubusercontent.com/8328839/180677954-aeb37f1f-4807-4b81-9597-f5fe4e635b23.png) and this is call stack snapshot in debug mode on intelliJ as you can see, the step is start transaction -> get connection on...

In a spring cloud setup it would be very helpfully, if we could configure all parameters via application.yml e.g. application.yml ``` decorator: datasource: p6spy: config: excludecategories: ```

To support config dateformat for spy, e.g. %(currentTime)

Hello. my pom.xml ` com.github.gavlyukovskiy p6spy-spring-boot-starter 1.7.1 ` application.properties ` decorator.datasource.enabled=true decorator.datasource.p6spy.logging=slf4j ` By this "Name of log file to use (only with logging=file)." did I understand correctly: file wil...

question

Currently there is a lot of parameters there is p6spy, but only few can be configured from `application.properties/yml`. Most popular are covered using spring-boot like properties, but it might be...

enhancement

For some projects there is no need in consistent logging of queries, but when some strange behavior was noticed. In this case it would be helpful to be able to...

enhancement

Currently the bean is created without `@ConditionalOnMissingBean` which only allows for creating an additional bean with a different name. This has as a result that queries will be logged twice...

When using multiple datasource they all get the same name "dataSource". You cannot get the bean name from `applicationContext.getBeansOfType(DataSource.class)` because they haven't finished initializing. So the returned map will never...

When using JDBC observability linked from official Spring Boot documentation https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.observability -> https://jdbc-observations.github.io/datasource-micrometer/docs/current/docs/html/ and including the mentioned spring boot starter ``` net.ttddyy.observation datasource-micrometer-spring-boot 1.0.3 ``` Application startup fails when datasource-proxy-spring-boot-starter...