How do I enable Jaeger jdbc
tracing in Quarkus
? I've followed the Quarkus
guides for Opentracing
and didn't see any info about this.
I'm using Quarkus
v0.21.2 with the following extensions:
-quarkus-smallrye-opentracing
-quarkus-resteasy
-quarkus-resteasy-jackson
-quarkus-hibernate-orm-panache
-quarkus-jdbc-postgresql
-quarkus-smallrye-openapi
And my code is just a basic Rest endpoint which calls my entity's Panache CRUD operation.
Any help is appreciated.
I've tried the following and it didn't work:
- added @Traced to my entity
- changed quarkus.jaeger.sampler-type=const into quarkus.jaeger.sampler-type=remote
What I expect in Jaeger
is, 2 spans for 1 trace, one for the REST call and another one for the JDBC
call.
But what I see is just 1 span for the REST call.