-
Notifications
You must be signed in to change notification settings - Fork 95
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
spring boot version 3.0.0 not working with jaeger #146
Comments
Spring boot 3.0 removes support of spring.factories. As temporary workaround you may create plain text file |
Spring boot 2.7 introduces new way for registering autoconfiguration classes. And then spring.factories file was deprecated. As of boot 3.0 support of spring.factories files was dropped. See also: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide#auto-configuration-files
Spring boot 2.7 introduces new way for registering autoconfiguration classes. And then spring.factories file was deprecated. As of boot 3.0 support of spring.factories files was dropped. Closes: opentracing-contrib#146 See also: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide#auto-configuration-files
I'm using spring boot 3.0.0 and
As @onyn suggested I tried adding that file in my project but it is not working. The only way I found to have something happening is to add
Now I can see
BUT .... I don't konw how to use a http-sender in place of a udp-sender and change the url. I tried adding
But it always tells me |
Can also use this in one of the config classes.
|
I am facing the same problem, were you able to make it work? |
@kayeanni, switch from jaeger to micrometer tracing. This is best solution in long term. See also #148 (comment) |
i am using jaeger with spring boot version 3.0.0 and java version 17 but unable to discover any services that registered with jaeger UI, is there version issue ? jaeger doen't support spring boot 3.0.0 ?
The text was updated successfully, but these errors were encountered: