Replies: 1 comment 6 replies
-
/cc @barreiro (jdbc), @brunobat (opentelemetry), @radcortez (opentelemetry), @yrodiere (jdbc) |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently started implementing open telemetry on an application that has multiple JDBC connections that are piped through a bastion host and I'm primarily concerned with getting data (traces) for said JDBC connections.
Judging by the documentation, it seems like all that needs to be done (beyond adding the dependency) is to enable telemetry on each data source, although no example is provided that has multiple data sources. I attempted this like so (using quarkus-config-yaml extension):
In the resultant grafana window, the "JDBC" section still has no data while the other sections do:
I also tried adding a base level jdbc section with telemetry enabled as featured verbatim in the documentation (quarkus.datasource.jdbc.telemetry=true) which yielded the same result.
I'm unsure whether the issue stems from the quantity of data sources, the configuration's format, the bastion piping, or something else entirely. I'm totally new to this, so any help would be much appreciated, and I'd be glad to provide more information and try things out as needed.
Beta Was this translation helpful? Give feedback.
All reactions