Gradle Build Plugin #3756
Replies: 3 comments 3 replies
-
Something like this? https://github.com/jkwatson/javaagent-gradle-plugin ;) There is a maven build plugin like this in the |
Beta Was this translation helpful? Give feedback.
-
Nope! I just use the java agent at runtime for that. This is for instrumenting your build so you can see how long the different tasks in your gradle build take and how long the individual tests take. I have it exporting to Honeycomb so we can track how long our builds take and target the slowest running tests to improve build time. |
Beta Was this translation helpful? Give feedback.
-
@jason-visotrust Is this available for public use now? |
Beta Was this translation helpful? Give feedback.
-
I've built a Gradle plugin that exports spans for the gradle build, each task, each test suite, and each test. It uses the Gradle BuildListener, TaskExecutionListener, and TestListener interfaces to get callbacks. It uses your library with the autoconfiguration to set up exporters, etc.
I was wondering if there would be interest in adding this to opentelemetry-java so the wider community could use it to track build times?
Thanks,
Jason
Beta Was this translation helpful? Give feedback.
All reactions