-
The Using OpenTelemetry guide says right at the beginning:
While this works for libraries directly supported by Quarkus and the OpenTelemetry extension, the use of the OpenTelemetry Agent might have some use after all. We're using Quarkus in a JVM-based application (no native image) and are using some 3rd-party libraries which are using for example What are the caveats of using the OpenTelemetry Agent with a Quarkus application and how would it work when using the Quarkus OpenTelemetry extension, too? Can they even be used at the same time? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
/cc @brunobat (opentelemetry), @radcortez (opentelemetry) |
Beta Was this translation helpful? Give feedback.
-
@joschi, the agent and the extension must not be used at the same time. They will conflict with each-other. It is possible to use the agent with a Quarkus application running in JVM mode but you wouldn't take advantage of all the Quarkus optimisations. Meaning it's expected the app to take longer to start and you might notice a runtime performance degradation. But you will need to mesure that to be sure. BTW, HttpURLConnection is not the best client around. |
Beta Was this translation helpful? Give feedback.
@joschi, the agent and the extension must not be used at the same time. They will conflict with each-other.
It is possible to use the agent with a Quarkus application running in JVM mode but you wouldn't take advantage of all the Quarkus optimisations. Meaning it's expected the app to take longer to start and you might notice a runtime performance degradation. But you will need to mesure that to be sure.
BTW, HttpURLConnection is not the best client around.