-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Favour Tracer API above ElasticApmTracer API in plugins and add additional seperation #3030
Labels
Comments
github-actions
bot
added
agent-java
community
Issues and PRs created by the community
triage
labels
Feb 20, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 20, 2023
… rather depend on a more general API.
raphw
changed the title
Favour Tracer above ElasticApmTracer in plugins
Favour Tracer API above ElasticApmTracer API in plugins and add additional seperation
Feb 20, 2023
I created a repo where I tried a POV to see if this is feasible and it seems like a small change which already separates the APIs much more. raphw@53e70e0 |
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 20, 2023
… rather depend on a more general API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 20, 2023
… rather depend on a more general API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 20, 2023
… rather depend on a more general API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…on main Elastic agent. Refactor plugins in a binary compatible manner to make use of the new API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…on main Elastic agent. Refactor plugins in a binary compatible manner to make use of the new API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…on main Elastic agent. Refactor plugins in a binary compatible manner to make use of the new API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…on main Elastic agent. Refactor plugins in a binary compatible manner to make use of the new API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…on main Elastic agent. Refactor plugins in a binary compatible manner to make use of the new API.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…s as a binary compatible mirror of the current configuration.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…s as a binary compatible mirror of the current configuration.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…s as a binary compatible mirror of the current configuration.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…subtype in one module to demonstrate expandability.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
…PI. Add a new tracer aware plugin class that uses the tracer API only.
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
raphw
added a commit
to raphw/apm-agent-java
that referenced
this issue
Feb 22, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem?
I would like to piggyback on Elastic's agent for non-APM-tracing, but at various points, the agent is bound to implementation details of Elastic's agent. This is mainly with regards to the use of
ElasticApmTracer
being requested from various places. However, this does not seem necessary for the most parts, the method missing from theTracer
API aregetConfig()
andgetObjectPoolFactory()
with few exceptions.Describe the solution you'd like
By adding only a few methods to the tracer API, the direct bounds to Elastic's APM can be removed from almost all plugins. This way it becomes possible to implement a custom agent whilst still using the comprehensive infrastructure that is offered by the Elastic agent and its plugins.
Describe alternatives you've considered
Forking the repository and implementing a copy with individual customization, but that is of course not a good long-term strategy and hinders collaboration on the main repository.
Additional context
Open Telementry offers a generic agent for implementing a blue print agent. Unfortunately, the agent does not support as many plugins as the Elastic agent and is not equally well maintained. It would be great if the Elastic agent could evolve in a direction where it would be possible to use it for other tracing purposes. As an ideal result, this would trigger additional contributions on the long run and help the Elastic agent to grow its standing in the field. To begin with, I would want to make some binary-compatible changes that improve the pluggability, but at some point one could even better differentiate the plugin SPI from the core agent API.
Implementation steps
While this change does not require many changes, it is a rather comprehensive remodularization and refactoring. It should therefore be broken up into multiple steps. In the first steps, the new API would be established. In all subsequent steps, the new API would be taken into use, thus carving out what dependencies still remain upon the agent's core. Each change thereafter would address such a step by adding additional API and further reduce the reliance on core API. All changes are based upon a proof of concept that demonstrates that such API refactoring is feasible.
Suggested steps:
3a. Avoid use of trace context static methods in favor of Tracer-defined behavior #3082
3b. Extract configuration from core module to API #3122
3c. Factor out reference counting to explicit API #3081
3d. Move plugin-related utilities and API to SDK/tracer #3166
3e. Make most plugins depend on only the SDK and tracer dependencies. #3231
3f. Moves ServiceInfo to tracer module and reduce dependency exposure to core module of plugins. #3272
3g. Add error reporting API to tracer-api. #3273
3h.
IntroduceAfter an implementation attempt, I do no longer think that explicit tracing bridges should be ported to the generic API as it would require a massive extension of that API. It can be assumed that other tracers that want to use the plugins of this tracer are not interested in such bridges or offer bridges of their own, as such bridges would be double indirections.Tracer
subtype that supports explicit span creation as required by API plugin, open tracing plugin and open telementry plugin.3i. Introduce Tracer API for log capture. #3515
3j Introduce API for metrics collection that does not depend on agent-core #3522
3k. Add API for instrumenting FAAS and adjust the AWS plugin #3516
The text was updated successfully, but these errors were encountered: