-
Notifications
You must be signed in to change notification settings - Fork 873
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
Fix native tests #10685
Fix native tests #10685
Conversation
f939d85
to
fdba51a
Compare
...tel-starter/src/test/java/io/opentelemetry/smoketest/OtelSpringStarterDisabledSmokeTest.java
Outdated
Show resolved
Hide resolved
Looks like native tests still failing? |
But not failing in #10636 - flaky? @jeanbisutti can you take a look? |
There are two problems leading to the failure of the OpenTelemetry starter tests in the native mode. Please see #10634 (comment). |
...ntelemetry/instrumentation/spring/autoconfigure/resources/OtelResourceAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...o/opentelemetry/instrumentation/spring/autoconfigure/OpenTelemetryAutoConfigurationTest.java
Outdated
Show resolved
Hide resolved
...ntelemetry/instrumentation/spring/autoconfigure/resources/OtelResourceAutoConfiguration.java
Outdated
Show resolved
Hide resolved
…est/OtelSpringStarterDisabledSmokeTest.java Co-authored-by: Lauri Tulmin <[email protected]>
…snake yaml, which doesn't work with graal native
8709349
to
f38adb5
Compare
EDIT thanks @laurit for the explanation #10636 (comment) |
here we remove the dependency on 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.
should we rename spring-boot-resources/library
to spring-boot-resources/javaagent
? since only intended to be used by java agent?
we use it inside the agent but there is nothing there that prevents it from being used as a library similarly to https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/resources/library |
https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation/resources/library seem useful outside of the java agent, but wondering why a non-java agent user would want to use |
We currently are not publishing these in a separate jar, the only way to get them is to use the autoconfigure module. I do agree that |
@zeitlinger if you and @jeanbisutti agree, I'd suggest that we rename |
created #10715 |
Background: spring starter shouldn't depend on spring-boot-resources, which uses snake yaml, which doesn't work with graal native