You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Boot auto-configuration for integration with
6
+
[Spring Boot](https://github.com/spring-projects/spring-boot) auto-configuration for integration with
7
7
*[P6Spy](https://github.com/p6spy/p6spy) - adds ability to intercept and log sql queries, including interception of a most `Connection`, `Statement` and `ResultSet` methods invocations
8
8
*[Datasource Proxy](https://github.com/ttddyy/datasource-proxy) - adds ability to intercept all queries and `Connection`, `Statement` and `ResultSet` method calls
9
9
*[FlexyPool](https://github.com/vladmihalcea/flexy-pool) - adds connection pool metrics (jmx, codahale, dropwizard) and flexible strategies for adjusting pool size on demand
All screenshots were taken using [Spring PetClinic](https://github.com/spring-petclinic/spring-petclinic-rest) with [Zipkin](https://github.com/openzipkin/zipkin) backend, but other tracing systems are supported through Spring Cloud Sleuth/Brave.
269
271
270
-
Example request:
271
-

272
+
Request span with jdbc tracing:
273
+

Copy file name to clipboardExpand all lines: samples/README.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,17 +13,24 @@ Run sample application on port 8081 with next endpoints:
13
13
./gradlew :samples:p6spy-sample:bootRun
14
14
```
15
15
16
-
add `--args='--spring.profiles.active=zipkin'` if you have [Zipkin](https://github.com/openzipkin/zipkin) running on port 9411 (e.g via `docker run -p 9411:9411 openzipkin/zipkin`)
16
+
or with [Zipkin](https://github.com/openzipkin/zipkin):
0 commit comments