generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 67
Onboarding ADOT Java to v2.x - with otel v2.10.0 #975
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
Merged
zzhlogin
merged 14 commits into
aws-observability:main
from
zzhlogin:test_upgrade_only_v2
Dec 19, 2024
Merged
Onboarding ADOT Java to v2.x - with otel v2.10.0 #975
zzhlogin
merged 14 commits into
aws-observability:main
from
zzhlogin:test_upgrade_only_v2
Dec 19, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a13e3c8 to
26283ef
Compare
mxiamxia
reviewed
Dec 19, 2024
...ftware/amazon/opentelemetry/javaagent/providers/AwsApplicationSignalsCustomizerProvider.java
Show resolved
Hide resolved
mxiamxia
previously approved these changes
Dec 19, 2024
Member
mxiamxia
left a comment
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.
LGTM! thank you
mxiamxia
approved these changes
Dec 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of changes:
Onboarding ADOT Java to v2.x, with the latest
opentelemetry-java-instrumentationdependency versionv2.10.0. Update the workflows, adot core implementation codes, contract tests and smoke tests with following change:A. Workflows:
.github/patches/opentelemetry-java-instrumentation.patchfile with the same code change as previous patch based on upstream v2.10.0.B. Core repo:
com.github.johnrengelman.shadowtocom.gradleup.shadowas it has been marked under maintenance mode: https://github.com/GradleUp/shadow?tab=readme-ov-file#gradle-shadowcom.diffplug.spotlessto newer version 6.25.0com.google.cloud.tools.jibto newer version 3.4.4"otel.resource.providers.aws.enabled"to betrue.C. Contract tests:
kotlin("jvm")version to be compatible if the new Java class from upstream.OTEL_EXPORTER_OTLP_PROTOCOLtogrpcfor instrumentation as in version v2.0.0:TOMCAT_THREADSmetric threshold to-2, as the value can be negative by tomcat design.a. All the change made in Support new semantice conventions. #972:
http.url->url.fullhttp.method->http.request.methodhttp.status_code->http.response.status_codenet.peer.name->server.addressnet.peer.port->server.portb. extra semantic conventions included in contract tests:
http.scheme->url.schemehttp.target->url.queryhttp.url->url.fullnet.host.name->server.addressnet.host.port->server.portnet.peer.name->server.addressnet.peer.port->server.portnet.protocol.name->network.protocol.namenet.protocol.version->network.protocol.versionnet.sock.host.addr->network.local.addressnet.sock.host.port->network.local.portnet.sock.peer.addr->network.peer.addressnet.sock.peer.name-> no replacement, removedmessaging.kafka.destination.partition->messaging.destination.partition.idmessaging.message.payload_size_bytes->messaging.message.body.sizeRemove
network.protocol.nameattribute check as it has marked as Conditionally required if not http and network.protocol.version is set: https://opentelemetry.io/blog/2023/http-conventions-declared-stable/#summary-of-changes.Conditionally check
peer.servicefor http client. Match with PR: https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/12083/filesRemove local socket attributes from http server span check as it is not extracted from HttpServerAttributesExtractor code,
Remove
http.response.header.content_lengthas it need an explicit configuration: https://opentelemetry.io/docs/specs/semconv/attributes-registry/http/#http-response-headerD. Smoke tests
Enable controller telemetry using env variable
OTEL_INSTRUMENTATION_COMMON_EXPERIMENTAL_CONTROLLER_TELEMETRY_ENABLED, which is disabled by default.https://opentelemetry.io/docs/zero-code/java/agent/disable/#suppressing-controller-andor-view-spans
Testing:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.