-
Notifications
You must be signed in to change notification settings - Fork 859
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
Add support for OpenSearch 1.x and 2.x auto-instrumentation #6998
Conversation
Is Java 1.8 support mandatory? |
no, see opentelemetry-java-instrumentation/instrumentation/java-http-client/javaagent/build.gradle.kts Line 12 in c170ec5
|
instrumentation/opensearch/opensearch-rest-1.0/javaagent/build.gradle.kts
Outdated
Show resolved
Hide resolved
instrumentation/opensearch/opensearch-rest-1.0/javaagent/build.gradle.kts
Outdated
Show resolved
Hide resolved
...try/javaagent/instrumentation/opensearch/rest/v1_0/OpenSearchRest1InstrumentationModule.java
Outdated
Show resolved
Hide resolved
...entelemetry/javaagent/instrumentation/opensearch/rest/OpenSearchRestInstrumenterFactory.java
Show resolved
Hide resolved
The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
.../opentelemetry/javaagent/instrumentation/opensearch/rest/v1_0/RestClientInstrumentation.java
Outdated
Show resolved
Hide resolved
...mentation/opensearch/opensearch-rest-1.0/javaagent/src/test/groovy/OpenSearchRestTest.groovy
Outdated
Show resolved
Hide resolved
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
…rch-rest-client` to version `1.0.0` Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Signed-off-by: Cédric Pelvet <cedric.pelvet@gmail.com>
Muzzle tests seem to be very sensitive and fail randomly, is this normal? |
Muzzle runs against the latest versions found on maven central, in this case there was a new release of project reactor with a breaking API change that is causing muzzle to fail, see #7106 |
@sharp-pixel fyi I merged |
@sharp-pixel we will plan on merging before next release, just going to leave it open for another day or two in case anyone else wants to review it, thx! |
This PR adds support for OpenSearch 1.x and 2.x Java clients auto-instrumentation.
This is made possible by OpenTelemetry specification v1.14.0 and OpenTelemetry Java SDK v1.19.0.
Testing is being done using org.opensearch:opensearch-testcontainers:2.0.0 (https://github.com/opensearch-project/opensearch-testcontainers)
Resolves #7007
Signed-off-by: Cédric Pelvet cedric.pelvet@gmail.com