gcr.io/paketo-buildpacks/opentelemetry: otel javaagent extension #315
-
Hello, I am using the I have not yet done a deep dive into how buildpacks work in detail - so far I just have been using them for a couple of months without having to know (which is great and I think one of the premises of buildpacks). Is there any way the Any help here would be very much appreciated. Also if it just is: you have to read into how buildpacks work. Current configuration in the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
So there's no support in the buildpack directly for extensions, but it's possible you may still be able to enable them. How would you enable this extension if you were not using buildpacks? What steps would you take? |
Beta Was this translation helpful? Give feedback.
No, I think you've got it. You wouldn't need the buildpack at that point. You're doing all the set up yourself, so you can just drop that buildpack for the time being.
You wouldn't be adding a layer, just include the customized JAR file with your app. So you could have Maven/Gradle just bundle it up with all of your other JAR files. The trick is that
/workspace
is the top-l…