How would I enable tracing for reactive-sql-clients ?
Now use %dev.quarkus.datasource.url=vertx-reactive:postgresql://dev-db-server:5432/mydb
- it works, but no tracing support though. I can see racing for my rest calls but not the db.
Tried to use %dev.quarkus.datasource.url=vertx-reactive:tracing:postgresql://dev-db-server:5432/mydb
my deps:
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-agroal</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-reactive-pg-client</artifactId>
</dependency>