-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Include ResourceProviders in the agent #6534
Description
There are a few efforts to add new ResourceProviders and to migrate existing ResourceProviders out of core and into instrumentation. One of the first ones came up in #6516. That module is built as a library so that users can leverage it directly, and it doesn't really have a javaagent counterpart module.
As a result, our build process will not pick it up and the ResourceProvider will not be included as an autoconfigured component.
We need to modify our build process so that we include ResourceProvider implementations in the agent itself.
See this comment in #6516 for some details. We probably want a more general purpose than adding every component manually to the agent build. Perhaps there is a naming convention or other standard we can leverage to accomplish this.